/* static/style.css - Updated for About Us Page */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* --- Root Variables (for easier color management) --- */
:root {
    --primary-blue: #003366; /* Dark blue for header, main headings */
    --secondary-yellow: #ffcc00; /* Yellow accent color */
    --accent-blue: #007bff; /* Button blue */
    --light-bg: #f0f2f5; /* Light grey background */
    --white: #ffffff;
    --text-color: #333; /* Dark text for light backgrounds */
    --light-border: #e0e0e0;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
}

/* --- General Body and Container Styles --- */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- Header Styles --- */
header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

header h1 {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    color: var(--secondary-yellow);
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* --- Navigation Menu (Desktop) --- */
header nav {
    flex-basis: auto;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

header nav ul li {
    display: inline-block;
    margin: 0 18px;
}

header nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 7px;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-yellow);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

/* --- Hamburger Menu Icon (Hidden on Desktop) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


/* --- Hero/Intro Section on Homepage --- */
#hero {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 10px var(--shadow-medium);
    margin-bottom: 30px;
}

#hero h2 {
    color: var(--secondary-yellow);
    font-family: 'Roboto', sans-serif;
    font-size: 3.2em;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

#hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
    font-weight: 300;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* --- Main Content Sections --- */
main {
    padding: 30px 0;
}

section {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-light);
}

h2 {
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 2.2em;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-yellow);
    display: inline-block;
    font-weight: 700;
}

/* --- Flight Search Form & Contact Form Input Styling --- */
.input-icon-group {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.input-icon-group input {
    padding-left: 45px !important;
}

.input-icon-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1em;
    pointer-events: none;
}

#flight-search {
    background-color: var(--light-bg);
    border: 1px solid #cce0f5;
    padding: 30px 40px;
    border-radius: 10px;
}

#flight-search h2 {
    text-align: center;
    width: 100%;
    font-size: 2em;
}

#flight-search form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
}

#flight-search form input[type="text"],
#flight-search form input[type="date"] {
    padding: 12px 18px;
    border: 1px solid #a0c2e6;
    border-radius: 5px;
    font-size: 1.05em;
    box-sizing: border-box;
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

#flight-search form input[type="text"]:focus,
#flight-search form input[type="date"]:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

#flight-search form button {
    padding: 12px 35px;
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    flex-grow: 1;
    max-width: 200px;
}

#flight-search form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* --- Flight Schedule Table --- */
#flight-schedule table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-light);
}

#flight-schedule table th,
#flight-schedule table td {
    padding: 15px 18px;
    text-align: left;
    border-bottom: 1px solid var(--light-border);
    font-size: 0.98em;
}

#flight-schedule table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
}

#flight-schedule table th:first-child {
    border-top-left-radius: 8px;
}
#flight-schedule table th:last-child {
    border-top-right-radius: 8px;
}

#flight-schedule table td {
    background-color: var(--white);
}

#flight-schedule table tbody tr:last-child td {
    border-bottom: none;
}

#flight-schedule table tbody tr:nth-child(even) td {
    background-color: #f9f9f9;
}

#flight-schedule table tbody tr:hover td {
    background-color: #eaf3ff;
}

.status-OnTime {
    color: #28a745;
    font-weight: bold;
}
.status-Delayed {
    color: #ffc107;
    font-weight: bold;
}
.status-Cancelled {
    color: #dc3545;
    font-weight: bold;
}

#flight-schedule p {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 5px;
}

/* --- Services Section --- */
.service-item {
    margin-bottom: 20px;
    padding: 25px;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.service-item h3 {
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    margin-top: 0;
    font-size: 1.6em;
    border-bottom: 2px solid var(--secondary-yellow);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 1.05em;
}

/* --- Why Choose Us Section --- */
#why-choose-us {
    text-align: center;
    padding: 40px 0;
    margin-top: 30px;
    background-color: var(--white);
}

#why-choose-us h2 {
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    flex-basis: calc(25% - 23px);
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 3.5em;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-blue);
    font-size: 1.4em;
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item p {
    font-size: 0.95em;
    line-height: 1.5;
}


/* --- About Us Page Specific Styles --- */
#about-us-content .about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center; /* Vertically align items in the grid */
}

#about-us-content .about-text {
    flex: 2; /* Takes more space */
    min-width: 300px;
}

#about-us-content .about-text h3 {
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-yellow);
    padding-bottom: 8px;
    display: inline-block;
    font-weight: 600;
}

#about-us-content .about-text p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px;
}

#about-us-content .about-image {
    flex: 1; /* Takes less space */
    min-width: 250px;
    text-align: center;
}

#about-us-content .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-light);
}

.values-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--light-border);
}

.values-section h3 {
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--secondary-yellow);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 700;
}

.values-section .value-item {
    display: inline-block; /* For horizontal alignment */
    width: 22%; /* Approx 4 items per row */
    min-width: 180px; /* Minimum width for items */
    margin: 15px 1%;
    vertical-align: top; /* Align items to top */
}

.values-section .value-item i {
    color: var(--secondary-yellow); /* Yellow icons */
    font-size: 3em;
    margin-bottom: 10px;
}

.values-section .value-item h4 {
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.values-section .value-item p {
    font-size: 0.9em;
    line-height: 1.5;
}


/* --- Contact Form --- */
#contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.05em;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #a0c2e6;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

#contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

#contact-form button[type="submit"] {
    display: block;
    width: auto;
    margin: 20px auto 0;
    padding: 15px 40px;
    background-color: #28a745;
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#contact-form button[type="submit"]:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.contact-info {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--light-border);
    text-align: center;
    color: var(--text-color);
}

.contact-info p {
    margin: 8px 0;
    font-size: 1.1em;
    font-weight: 400;
}

.contact-info strong {
    color: var(--primary-blue);
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* --- Footer Styles (Expanded & White) --- */
footer {
    background-color: var(--white); /* White background */
    color: var(--text-color); /* Dark text for light background */
    padding: 30px 0 10px;
    margin-top: 30px;
    font-size: 0.9em;
    box-shadow: 0 -2px 5px var(--shadow-light);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-border); /* Light border for separator */
    margin-bottom: 10px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
    box-sizing: border-box;
}

.footer-column h3 {
    color: var(--primary-blue); /* Primary blue for headings on white background */
    font-family: 'Roboto', sans-serif;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text-color); /* Ensure paragraph text is visible */
}

.footer-column ul {
    list-style: none; /* This line removes the dots */
    padding: 0;      /* Removes default left padding */
    margin: 0;       /* Removes default top/bottom margin */
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--text-color); /* Dark text for links on white background */
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-blue); /* Blue on hover for links */
}

/* Social Icons */
.social-icons {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    justify-content: flex-start;
}
.social-icons a {
    color: var(--primary-blue); /* Primary blue for social icons */
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-blue); /* Blue on hover for social icons */
}

/* Footer Contact Info Icons */
.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-color); /* Ensure contact info text is visible */
}
.contact-info-footer p i {
    margin-right: 10px;
    font-size: 1.1em;
    color: var(--primary-blue); /* Primary blue for contact info icons */
    flex-shrink: 0;
    padding-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 0.85em;
    color: #555; /* Dark grey for copyright text */
}

/* --- Back to Top Button --- */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--accent-blue);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

#backToTopBtn.show {
    opacity: 1;
    transform: translateY(0);
}

#backToTopBtn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* ========================================= */
/* --- MEDIA QUERIES FOR RESPONSIVENESS --- */
/* ========================================= */

/* For screens smaller than 1024px (Laptops, larger tablets) */
@media (max-width: 1024px) {
    .footer-column {
        min-width: 200px;
    }
    /* About Us content might need to center or left-align based on overall preference */
    .footer-column.about-us, .social-icons {
        text-align: center;
        justify-content: center; /* Center social icons */
    }
}

/* For screens smaller than 768px (common tablet portrait and mobile landscape) */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px 0;
    }

    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    header h1 {
        font-size: 2em;
        margin-bottom: 0;
        flex-basis: auto;
    }

    .menu-toggle {
        display: flex;
    }

    header nav {
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        background-color: rgba(0, 51, 102, 0.95);
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    }

    header nav.active {
        max-height: 200px;
    }

    header nav ul {
        flex-direction: column;
        padding: 15px 0;
    }

    header nav ul li {
        display: block;
        margin: 0;
    }

    header nav ul li a {
        padding: 12px 20px;
        font-size: 1.1em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        text-align: left;
    }

    header nav ul li:last-child a {
        border-bottom: none;
    }

    header nav ul li a::after {
        display: none;
    }

    #hero {
        padding: 60px 0;
    }
    #hero h2 {
        font-size: 2.5em;
    }
    #hero p {
        font-size: 1.1em;
        padding: 0 10px;
    }

    h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        text-align: center;
    }

    #flight-search {
        padding: 25px 30px;
    }
    #flight-search form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    #flight-search form input[type="text"],
    #flight-search form input[type="date"],
    #flight-search form button {
        width: 100%;
        min-width: unset;
    }
    .input-icon-group i {
        left: 10px;
        font-size: 1em;
    }

    #flight-search form input[type="text"],
    #flight-search form input[type="date"],
    #contact-form input[type="text"],
    #contact-form input[type="email"],
    #contact-form textarea {
        padding-left: 40px !important;
    }

    #flight-schedule table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        width: 100%;
    }

    #flight-schedule table th,
    #flight-schedule table td {
        white-space: nowrap;
        min-width: 100px;
        padding: 12px 15px;
        font-size: 0.9em;
    }

    .service-item {
        padding: 20px;
    }

    .service-item h3 {
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .features-grid {
        gap: 20px;
    }
    .feature-item {
        flex-basis: calc(50% - 15px);
        max-width: unset;
    }

    /* About Us Page responsiveness */
    #about-us-content .about-grid {
        flex-direction: column; /* Stack image and text */
        gap: 20px;
    }
    #about-us-content .about-text,
    #about-us-content .about-image {
        flex: auto; /* Reset flex to auto */
        min-width: unset;
        width: 100%;
    }
    #about-us-content .about-text h3 {
        text-align: center;
    }
    #about-us-content .about-image {
        order: -1; /* Place image above text on mobile */
    }
    .values-section .value-item {
        width: 45%; /* 2 items per row */
    }


    #contact-form input[type="text"],
    #contact-form input[type="email"],
    #contact-form textarea,
    #contact-form button[type="submit"] {
        padding: 10px;
        font-size: 0.95em;
    }

    #contact-form button[type="submit"] {
        width: 100%;
        padding: 12px;
        font-size: 1.1em;
    }

    .contact-info p {
        font-size: 1em;
    }

    /* Footer responsiveness (tablet portrait) - About Us stacks, Quick Links & Contact Us go side-by-side */
    .footer-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-column {
        min-width: unset;
        padding: 0 10px;
        text-align: left;
    }

    .footer-column.about-us {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-column.quick-links,
    .footer-column.contact-info-footer {
        flex-basis: calc(50% - 20px);
        text-align: left;
    }

    .social-icons {
        justify-content: center;
    }
    .contact-info-footer p {
        justify-content: flex-start;
    }

    .footer-bottom {
        font-size: 0.8em;
    }

    footer {
        padding: 20px 0 10px;
    }
}

/* For screens smaller than 576px (very small phones) - All footer columns stack */
@media (max-width: 576px) {
    header h1 {
        font-size: 1.8em;
    }

    header nav ul li {
        margin: 8px 0;
    }

    h2 {
        font-size: 1.6em;
    }

    section {
        padding: 15px;
    }

    #hero h2 {
        font-size: 2em;
    }
    #hero p {
        font-size: 1em;
    }

    #flight-search form input[type="text"],
    #flight-search form input[type="date"],
    #flight-search form button {
        font-size: 0.9em;
        padding: 10px;
    }

    .feature-item {
        flex-basis: 95%;
    }

    .service-item h3 {
        font-size: 1.2em;
    }

    /* About Us Page responsiveness */
    .values-section .value-item {
        width: 95%; /* 1 item per row */
        margin: 10px auto;
    }

    .contact-info p {
        font-size: 0.95em;
    }

    /* Footer: All columns stack on very small screens */
    .footer-column.quick-links,
    .footer-column.contact-info-footer {
        flex-basis: 100%;
        text-align: center;
    }
    .footer-column ul {
        align-items: center;
    }
    .contact-info-footer p {
        justify-content: center;
    }
}


/* --- Scroll Reveal Effects --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* static/style.css - New Admin Panel Styles (append to the end) */

#admin-login-form, #admin-dashboard-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-light);
    margin-top: 30px;
    text-align: center; /* Center content within these sections */
}

#admin-login-form h2, #admin-dashboard-content h2 {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-yellow);
    display: inline-block;
    font-size: 2em;
}

#admin-login-form form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left; /* Align form labels/inputs to left */
}

#admin-login-form .form-group {
    margin-bottom: 15px;
}

#admin-login-form .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-blue);
}

#admin-login-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#admin-login-form .text-danger {
    color: #dc3545;
    font-size: 0.85em;
}

#admin-login-form .button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    font-size: 1.1em;
}

/* Admin Dashboard Specifics */
.admin-actions {
    text-align: right;
    margin-bottom: 20px;
}

.small-button {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-left: 5px;
}

.edit-button {
    background-color: #007bff;
}
.edit-button:hover {
    background-color: #0056b3;
}

.delete-button {
    background-color: #dc3545;
}
.delete-button:hover {
    background-color: #c82333;
}

.admin-actions-cell {
    white-space: nowrap; /* Prevent actions buttons from wrapping */
}