.header-content {
    display: flex;
    align-items: left;
    padding: 10px 20px;
    padding-left: 0px;
    height: var(--header-height, 80px);
}

.logo-section .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5em;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
}

.main-nav {
    display: flex;
    align-items: center;
}

.auth-nav {
    display: flex;
    align-items: center;
}

.nav-button {
    margin-left: 10px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
}

.nav-button.primary {
    background-color: #007bff;
    color: #fff;
}

.nav-button.secondary {
    background-color: #6c757d;
    color: #fff;
}

.nav-link {
    margin-left: 10px;
    text-decoration: none;
    color: #007bff;
}
/* Add this new CSS class for styling the links */
.responsive-link {
    text-decoration: none;
    color: #007BFF; /* Bootstrap primary color */
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.responsive-link:hover {
    background-color: #0056b3; /* Darker shade for hover */
    color: #ffffff;
}
.lang-selector {
    position: relative;
    margin-left: 20px;
/* Existing styles for the language selector */
.lang-selector {
    position: relative;
    margin-left: 20px;
}

.form-control {
    width: auto;
    display: inline-block;
    margin-right: 70px;
    margin-top: 10px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .form-control {
        font-size: 0.9em; /* Smaller font size for smaller screens */
        margin-right: 50px; /* Adjust margin for smaller screens */
    }
}

@media (max-width: 480px) {
    .form-control {
        font-size: 0.8em; /* Even smaller font size for very small screens */
        margin-right: 30px; /* Further adjust margin for very small screens */
    }
}
}
.dropbtn {
    background: none;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

.lang-option {
    padding: 8px 16px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
}

.lang-option:hover {
    background-color: #f1f1f1;
}

.lang-selector:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
    }
    .main-nav.active {
        display: flex;
        flex-direction: column;
    }
    .lang-selector {
        margin-left: 10px;
    }
    .dropbtn {
        font-size: 0.9em; /* Smaller font size for smaller screens */
    }
    .dropdown-content {
        min-width: 120px; /* Smaller width for dropdown */
    }
    .lang-option {
        padding: 6px 12px; /* Smaller padding for options */
    }
}

@media (max-width: 480px) {
    .dropbtn {
        font-size: 0.8em; /* Even smaller font size for very small screens */
    }
    .dropdown-content {
        min-width: 100px; /* Even smaller width for dropdown */
    }
    .lang-option {
        padding: 4px 8px; /* Even smaller padding for options */
    }
}

/* Remove any conflicting background colors */
.main-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 199999999;
    height: var(--header-height, 80px);
}

/* Ensure main content starts below header */
.main-content {
    margin-top: var(--header-height, 60px);
    padding: 20px;
    background: var(--background-color, #FFFEEA);
    min-height: calc(100vh - var(--header-height, 60px));
    width: 100%;
    position: relative;
}

/* Fix container width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

