.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    min-width: 200px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    z-index: 1000;
    padding: 0;
    margin-top: 2px;
    display: none;
}

.dropdown-menu.show {
    display: block;
    transform: translate3d(0px, 32px, 0px);
    top: 0;
    left: 0;
    will-change: transform;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    min-width: 100px;
}

.language-selector .caret {
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    margin-left: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    border: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

.dropdown-item.active {
    background-color: #007bff;
    color: white;
}

/* Flag image handling */
.flag-image {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border: 1px solid #eee;
}

/* Contact section */
.contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact .btn {
    margin: 0;
    color: green;
} 