.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.logo-container {
    height: 100%;
    padding: 10px 0;
    box-sizing: border-box;
}

.logo-container img {
    height: 100%;
}

.header-right .header-link {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    cursor: pointer;
    background: none;
    border: none;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-submit:hover {
    background-color: #296aab;
}

h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.header-title {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.header-link:hover {
    color: #1976d2;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: -8px;
    top: 44px;
    background-color: #f9f9f9;
    min-width: 239px;
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content .dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border: none;
    background-color: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-content .dropdown-item:hover {
    color: #1976d2;
}

.dropdown-content .dropdown-item:hover {
    background-color: #f1f1f1;
}

.dropdown.show .dropdown-content {
    display: block;
}




/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0 10px;
    height: 40px;
    justify-content: center;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #555;
    border-radius: 2px;
    transition: all 0.3s ease;
}


@media screen and (max-width: 768px) {

    .hamburger-menu {
        display: flex;
    }

    .header-right {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 0;
        gap: 0;
    }

    .header-right:not(.nav-open) {
        display: none;
    }

    .header-right.nav-open {
        display: flex;
    }


    .header-right .header-link:hover {
        background-color: #f1f1f1;
    }

    .header-right .dropdown {
        width: 100%;
        display: block;
    }

    .header-right .header-link {
        width: 100%;
        text-align: left;
        padding: 15px 30px;
        box-sizing: border-box;
    }

    .header-right .dropdown-toggle {
        display: none;
    }

    .header-right .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #f9f9f9;
        display: none;
    }

    .header-right.nav-open .dropdown-content {
        background-color: #ffffff;
    }

    .header-right.nav-open .dropdown-content {
        display: block;
        right: 0;
        top: 0;
        padding-bottom: 20px;

    }

    .header-right .dropdown.show .dropdown-content {
        display: block;
    }

    .header-right .dropdown-content .dropdown-item {
        padding: 12px 30px !important;
    }
}