/* Ensure no bullet points and correct spacing for the navigation */
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px; /* Creates space between items */
}

/* Remove bullets from list items */
header nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Language Switcher Dropdown */
#languageSwitcher {
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgb(0, 0, 0); /* Black background */
    color: #fff;
    border: none;
    border-radius: 25px; /* Rounded edges */
    cursor: pointer;
    transition: background 0.3s ease-in-out;

    /* Hide the default dropdown arrow */
    -webkit-appearance: none; /* Safari & Chrome */
    -moz-appearance: none; /* Firefox */
    appearance: none; /* Standard */
    background-image: none; /* Ensure no background arrow */
}

/* Hover effect */
#languageSwitcher:hover {
    background-color: rgb(76, 76, 76);
}

/* Ensure proper positioning */
header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Align the select dropdown properly */
header nav ul li {
    display: flex;
    align-items: center;
}

/* Hide the arrow on Firefox */
#languageSwitcher::-moz-focus-inner {
    border: 0;
}
