
header {
    background-color: #06234b;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}

header h3 {
    margin: 5px 0;
    color: #a1c1f1;
}

header h1 {
    color: white;
    margin: 10px 0;
}


.navbar {
    overflow: hidden;
    background-color: #06234b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #04192b;
    color: white;
}

.navbar a.active {
    background-color: #3564a9;
    font-weight: bold;
}

/* Dropdown styles */
.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown .dropbtn.active {
    background-color: #3564a9;
    font-weight: bold;
}

.fa-caret-down {
    margin-left: 8px;
}

.navbar a:hover, 
.dropdown:hover .dropbtn {
    background-color: #04192b;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 4px 4px;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #3564a9;
    color: white;
}

.dropdown-content a.active {
    background-color: #3564a9;
    color: white;
    font-weight: bold;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.admin-login-link {
    background-color: #d32f2f !important;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: 500;
    position: relative;
}

.admin-login-link:hover {
    background-color: #b71c1c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

.admin-login-link::before {
    content: "🔐 ";
    margin-right: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar {
        justify-content: center;
        flex-wrap: wrap;
        padding: 5px 10px;
    }
    
    .navbar a, 
    .dropdown .dropbtn {
        font-size: 14px;
        padding: 8px 10px;
    }
    
    .logo-container img {
        max-width: 120px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    header h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar a, 
    .dropdown .dropbtn {
        font-size: 13px;
        padding: 6px 8px;
        flex-grow: 1;
    }
    
    .logo-container img {
        max-width: 100px;
    }
    
    .dropdown-content {
        width: 100%;
        left: 0;
    }
    
    header {
        padding: 15px 5px;
    }
    
    header h1 {
        font-size: 1.3rem;
    }
}