/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0073e6; /* Primary Color */
    padding: 10px 20px;
    color: white;
}

/* Logo & Subtitle */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container img {
    width: 120px; /* Resize logo */
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

/* Subtitle Styling */
.logo-container .subtitle {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin: 5px 0 0;
}

.logo-container .subtitle a {
    color: #FFD700; /* Yellow link for visibility */
    text-decoration: underline;
    font-weight: bold;
}

.logo-container .subtitle a:hover {
    color: #FFA500; /* Orange on hover */
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    background-color: #005bb5;
    border-radius: 5px;
}

/* Logout Button Styling */
.logout a {
    background-color: red;
    padding: 8px 15px;
    border-radius: 5px;
}

.logout a:hover {
    background-color: darkred;
}

/* Mobile Menu */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white; /* Changed to white */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #0073e6;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}
