/* Container in the top-right corner */
#language-selector-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

/* Current language flag button */
#current-lang-btn {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

/* Flags */
.flag-icon {
    width: 21px;
    height: 14px;
}

/* Dropdown list */
#lang-dropdown {
    display: none; /* hidden by default */
    list-style: none;
    margin: 0;
    padding: 5px 0;
    background-color: white;
    border: 1px solid #ccc;
    position: absolute;
    top: 30px;
    right: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* Dropdown items */
#lang-dropdown li {
    padding: 5px 10px;
    cursor: pointer;
}

/* Hover effect */
#lang-dropdown li:hover {
    background-color: #f0f0f0;
}
