/* Language button styling */
.lang-button {
    background-color: transparent;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 5px;
  
}

.lang-button img {
    margin-right: 5px;
}

/* Popups styling */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;

}

/* Show popup when 'active' class is added */
.popup-overlay.active {
    display: flex;
}

.popup-content {
    z-index: 2000;
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    color: black;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.hidden {
    visibility: hidden;
}

/* Remove bullet points from the language selection list */
.language-selector {
    list-style-type: none; /* Removes bullets */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.language-selector li {
    list-style-type: none; /* Ensures no bullets appear on list items */
}