.container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    max-height: 60px; /* Adjust based on your design */
}

header {
    top: 0;
    background-color: #e9ecef;
    color: #111;
    z-index: 1000 !important;
    padding: 10px 0;
}

header .container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header .logo {
    align-items: baseline;
}

header .logo img {
    max-height: 80px;
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #111;
    text-decoration: none;
    font-size: 18px;
}

.login_link {
    margin-left: 200px;
}

.drawer-nav {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 250px;
    background-color: #e9ecef; /* Grey-black background color */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000; /* Ensure it appears above other content */
}

.drawer-nav.open {
    transform: translateX(0);
}

.drawer-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.drawer-list li {
    margin-bottom: 20px;
    gap: 100px;
}

.drawer-list li a {
    text-decoration: none;
    color: #111; /* White text for contrast */
    font-size: 18px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    padding: 0;
    z-index: 1001; /* Ensure it's clickable when fixed */
}

.menu-toggle .hamburger {
    width: 100%;
    height: 3px;
    background-color: #111; /* White color for contrast */
    border-radius: 5px;
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* Login Icon and User Menu Styles */
.user-menu {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.user-icon {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #111;
}

.user-icon img {
    max-height: 30px; /* Adjust based on your design */
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #111;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.user-menu .show {
    display: block;
}

@media (max-width: 768px) {
    .user-menu {
        margin-left: 0;
    }
}

/* Hide drawer on larger screens */
.drawer {
    display: none; /* Hide the drawer toggle button */
}

.drawer-nav {
    display: none; /* Hide the drawer navigation */
}

/* Show drawer on smaller screens */
@media (max-width: 768px) {
    header nav ul {
        display: none; /* Hide the navigation links */
    }
    
    .drawer {
        display: flex; /* Show the drawer toggle button */
    }

    .drawer-nav {
        display: block; /* Show the drawer navigation */
    }
}