.header-container {
    background-color: white;
    position: fixed;
    top: 0;
    left: 50%;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 4px 10px 0px #3F51B529;
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.8s ease;
}


.language-dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap:14px;
    background: #FFFFFF;
    border: 1px solid #EC0C8C;
    padding: 8px 8px 8px 16px;
    border-radius:30px;
    cursor: pointer;
    color:#6B6B6B
}

.dropdown-btn .flag {
    width:20px;
    height: 15px;
}

.dropdown-btn .arrow{
    transition: all 0.3s ease;
}

.dropdown-btn .arrow-down{
    transform: rotate(90deg);
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px;
    background: white;
    position: absolute;
    bottom: 0px;
    right: 0;
    transform: translateY(100%);
    width: 180px;
    border-radius: 6px;
    box-shadow: 2px 2px 9px 0px #0000001A;
    display: none;
    z-index: 100;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu .flag {
    width:17px;
    height: 13px;
}

.dropdown-menu li {
    color:#6B6B6B;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background: #f2f2f2;
}