/*!
Theme Name: SAM Theme
Theme URI: https://www.linkedin.com/in/saadfadaly/
Author: SaaD Fadaly
Author URI: https://www.linkedin.com/in/saadfadaly/
Description: Theme Description
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sam-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

/* Login Page Styling */
body {
    margin: 0;
    font-family: "Tajawal", sans-serif;
    background: #e6f0fa; /* Light blue background from the image */
    min-height: 100vh;
    padding: 24px;
    justify-content: center;
    align-items: center;
}

h1, h2, h3, h4, h5, h6, p, q, a, div, span, td, th, tr, label, input, select, textarea, button, .sam-alert, .sam-font * {
    font-family: "Tajawal", sans-serif;
}

.sam-min-header i {
    font-size: 32px;
    color: rgba(24, 132, 137, 1);
}

.radial-gradient {
    background: none; /* Remove the radial gradient to match the solid background */
    min-height: 100vh;
    width: 100%;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 2rem;
    width: 100%;
    margin: 100px auto auto;
    max-width: 400px; /* Approximate width based on the image */
}

.card-body {
    padding: 0;
}

.logo-img {
    display: block;
    margin: 0 auto 2rem;
    text-align: center;
}

.logo-img img {
    max-width: 150px; /* Adjust based on your logo size */
    height: auto;
}

.form-control {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #d3d3d3;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #4a90e2; /* Blue border on focus to match the theme */
    outline: none;
}

.mb-3 label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.mb-3 input {
    width: 100%;
}

.btn-primary {
    background: #4a90e2; /* Blue button color from the image */
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    /*width: 100%;*/
    transition: background 0.3s ease;
    text-decoration: unset;
}

.btn-primary:hover {
    background: #357abd; /* Slightly darker blue on hover */
}

#loginform p {
    margin-bottom: 1rem;
}

#loginform .forgetmenot {
    font-size: 14px;
    margin-bottom: 1rem;
}

#loginform .forgetmenot input {
    margin-right: 5px;
}

@media (max-width: 576px) {
    .card {
        padding: 1.5rem;
    }

    .logo-img img {
        max-width: 120px;
    }

    .form-control {
        padding: 8px;
    }

    .btn-primary {
        padding: 10px;
    }
}

/* Header Container (Title and Buttons) */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 16px;
}
.header-right {
    width: 30%;
    text-align: right;
}
.header-right h1 {
    font-size: 24px;
    margin: 0;
    color: #23282d;
}
.header-left {
    width: 70%;
    text-align: left;
}
.action-buttons {
    margin: 0;
}
.maintenance-map-filters {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: end;
}
.maintenance-map-filters select,
.maintenance-map-filters input,
.maintenance-map-filters button {
    padding: 5px;
    font-size: 14px;
}
#map-container {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 16px;
}
#maintenanceMap {
    height: 600px;
    width: 100%;
}

#resetFilters {
    background: #4a90e2;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 16px !important;
    transition: background 0.3s ease;
}

/**/
