/* Main dropdown styling */
.language-dropdown {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Yatra One', cursive;
    font-size: 18px;
    color: #333;
    padding: 20px 20px;
    border-radius: 25px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    text-align: center;
}

/* Remove default dropdown arrow */
.language-dropdown::-ms-expand {
    display: none;
}

/* Option styling */
.language-dropdown option {
    font-family: 'Yatra One', cursive;
    font-size: 16px;
    color: #333;
    background: white;
    padding: 8px;
}

/* Language-specific fonts */
.language-dropdown option[value="ta"] {
    font-family: 'Noto Sans Tamil UI', sans-serif;
}

.language-dropdown option[value="ml"] {
    font-family: 'Noto Sans Malayalam UI', sans-serif;
}

.language-dropdown option[value="kn"] {
    font-family: 'Noto Sans Kannada UI', sans-serif;
}

/* Hover effects */
.language-dropdown:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-dropdown:focus {
    box-shadow: none;
}