/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --primary-dark: #0a0e13;
    --secondary-dark: #151922;
    --card-dark: #1a1f2e;
    --accent-gold: #10b981;
    --accent-gold-dark: #10b981;
    --accent-blue: #2a9df4;
    --text-light: #e8e9ed;
    --text-gray: #a0a5b8;
    --text-muted: #6b7280;
    --border-dark: #2d3548;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --shadow-strong: rgba(0, 0, 0, 0.5);
    --gradient-dark: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(42, 157, 244, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.05) 0px, transparent 50%);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(15, 232, 55, 0.3);
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Banner */
.hero-banner {
    background: 
        linear-gradient(135deg, rgba(10, 14, 19, 0.9) 0%, rgba(26, 31, 46, 0.8) 100%), 
        url('../images/bannerbackground.png') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    border-bottom: 2px solid var(--border-dark);
    box-shadow: inset 0 -100px 100px rgba(0,0,0,0.4);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 14, 19, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 255, 42, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(9, 102, 16, 0.5)); }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-accent {
    background: var(--accent-blue);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(42, 157, 244, 0.3);
}

.btn-accent:hover {
    background: #1e88e5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 157, 244, 0.5);
}

/* Services Grid */
.services-grid {
    padding: 100px 20px;
    background: var(--gradient-dark);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--card-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 1px solid var(--border-dark);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--card-dark), transparent);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content .price {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(42, 157, 244, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(42, 157, 244, 0.2);
}

.service-content .description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Who Are We Section */
.who-are-we {
    padding: 100px 20px;
    background: var(--secondary-dark);
    position: relative;
}

.who-are-we::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.who-image {
    position: relative;
}

.who-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    opacity: 0.3;
}

.who-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.who-text h2 {
    color: var(--accent-gold);
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.who-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.who-text .tagline {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 35px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px;
}

/* Team Page */
.team-section {
    padding: 0;
    background: var(--gradient-dark);
}

.team-hero {
    background: 
        linear-gradient(135deg, rgba(10, 14, 19, 0.95) 0%, rgba(26, 31, 46, 0.9) 100%), 
        url('../images/bannerbackground2.png') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: var(--text-light);
    box-shadow: inset 0 -80px 80px rgba(0,0,0,0.5);
    margin-bottom: 80px;
    border-bottom: 2px solid var(--border-dark);
}

.team-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-content {
    padding: 0 20px 100px 20px;
}

.team-category {
    margin-bottom: 80px;
    background: var(--card-dark);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
}

.team-category h2 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 35px;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.high-command-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.lc-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    object-fit: cover;
}

.team-member:hover img {
    border-color: var(--accent-blue);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.team-member h3, .team-member h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.team-member .rank {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.team-placeholder {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 40px;
}

.category-title {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 40px;
    margin-top: 0;
    font-weight: 800;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.rank-section {
    margin-bottom: 50px;
}

.rank-title {
    color: var(--accent-blue);
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
    padding-left: 25px;
    border-left: 4px solid var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    padding: 18px 25px;
    border-radius: 6px;
}

.cache-info {
    margin-top: 50px;
    text-align: center;
    padding: 25px;
    background: var(--card-dark);
    border-radius: 10px;
    border: 1px solid var(--border-dark);
}

.cache-info a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cache-info a:hover {
    color: var(--accent-blue);
}

/* Duty Logs Page */
.duty-logs-section {
    padding: 100px 20px;
    background: var(--gradient-dark);
}

.duty-logs-section h1 {
    color: var(--accent-gold);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-responsive {
    overflow-x: auto;
    background: var(--card-dark);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
}

.duty-logs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.duty-logs-table thead {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.duty-logs-table th {
    padding: 20px 18px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.duty-logs-table tbody tr {
    border-bottom: 1px solid var(--border-dark);
    transition: background-color 0.2s ease;
}

.duty-logs-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.duty-logs-table td {
    padding: 18px;
    color: var(--text-gray);
}

.officer-name {
    font-weight: 600;
    color: var(--accent-gold);
}

.dept-badge {
    background: var(--accent-blue);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.duty-time {
    font-weight: 600;
    color: var(--success-green);
}

.logs-footer {
    margin-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.error-message,
.no-data-message {
    background: var(--card-dark);
    border-left: 4px solid var(--accent-gold);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-gray);
    border: 1px solid var(--border-dark);
}

/* Cache Management Page */
.cache-section {
    padding: 100px 20px;
    background: var(--gradient-dark);
}

.cache-section h1 {
    color: var(--accent-gold);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.message {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
    border: 1px solid;
}

.message-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    border-color: var(--success-green);
}

.message-info {
    background: rgba(42, 157, 244, 0.1);
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.message-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-red);
    border-color: var(--danger-red);
}

.cache-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.cache-card {
    background: var(--card-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
}

.cache-card h2 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cache-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.cache-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-field {
    padding: 14px 18px;
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--secondary-dark);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.cache-card .btn {
    width: 100%;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--text-gray);
    padding: 40px 20px;
    margin-top: 0;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
    font-size: 0.95rem;
}

.footer-content p:last-child {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .who-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .team-section h1,
    .duty-logs-section h1 {
        font-size: 2.2rem;
    }

    .high-command-grid {
        grid-template-columns: 1fr;
    }

    .lc-members-grid {
        grid-template-columns: 1fr;
    }

    .duty-logs-table {
        font-size: 0.85rem;
    }

    .duty-logs-table th,
    .duty-logs-table td {
        padding: 14px 12px;
    }

    .team-category {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .high-command-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lc-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-dark);
}

/* Login Button */
.login-button {
    background: var(--accent-gold) !important;
    color: var(--primary-dark) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-button:hover {
    background: var(--accent-gold-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

.login-button::after {
    display: none !important;
}

/* User Profile Dropdown */
.user-profile {
    position: relative;
}

.profile-dropdown {
    position: relative;
    align-items: center;
}

.profile-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;

}

.profile-button:hover {
    background: var(--secondary-dark);
    border-color: var(--accent-gold);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.profile-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.profile-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.dropdown-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.dropdown-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-dark);
    margin: 0 10px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--secondary-dark);
    color: var(--text-light);
}

.dropdown-item.logout {
    color: var(--danger-red);
    border-top: 1px solid var(--border-dark);
    margin-top: 5px;
}

.dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

.dropdown-item svg {
    flex-shrink: 0;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-green);
    border: 1px solid var(--success-green);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger-red);
    border: 1px solid var(--danger-red);
}