/* Minimal improvements for selects and textareas */
select, textarea, input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(92, 64, 51, 0.15);
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

select:focus, textarea:focus, input[type="text"]:focus {
    border-color: #5c4033;
    box-shadow: 0 0 0 3px rgba(92, 64, 51, 0.2);
    outline: none;
}

select option {
    padding: 10px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
}

select:hover {
    border-color: #5c4033;
}

/* Ensure dropdown options are visible */
select option:checked {
    background-color: #5c4033;
    color: white;
}

/* Enlarge text in भाषा अध्ययन section */
#thinking-language {
    font-size: 1.2em;
    line-height: 1.6;
}

#thinking-language .exercise-title {
    font-size: 1.8em;
    margin-bottom: 20px;
}

#thinking-language .content-block h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
}

#thinking-language .content-block p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

#thinking-language .vocab-question p,
#thinking-language .contraction-item p {
    font-size: 1.3em;
    margin-bottom: 15px;
    line-height: 1.5;
}

#thinking-language .interactive-btn {
    font-size: 1.2em;
    padding: 15px 30px;
    margin-top: 20px;
}

#thinking-language .feedback-message {
    font-size: 1.2em;
    margin-top: 15px;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    select, textarea, input[type="text"] {
        font-size: 20px; /* Increased from 18px for better mobile readability */
        padding: 18px 22px;
        padding-right: 55px;
    }
    
    select option {
        font-size: 20px;
        padding: 14px;
    }
    
    #thinking-language {
        font-size: 1.3em;
    }
    
    #thinking-language .vocab-question p,
    #thinking-language .contraction-item p {
        font-size: 1.4em;
    }
}

/* Ensure dropdown is clickable and visible */
.vocab-question select,
.contraction-item select {
    min-height: 55px;
    z-index: 10;
    position: relative;
    font-size: 1.2em;
    font-weight: 500;
}

/* Larger text for भाषा अध्ययन dropdowns specifically */
#thinking-language .vocab-question select,
#thinking-language .contraction-item select {
    font-size: 1.3em;
    min-height: 60px;
    padding: 18px 25px;
    padding-right: 50px;
}

/* Better contrast for dropdown options */
select option {
    background-color: #ffffff;
    color: #333333;
    border: none;
    font-size: 1.1em;
    padding: 12px 15px;
}

select option:hover {
    background-color: #f0f0f0;
}

/* Additional styling for भाषा अध्ययन section */
#thinking-language .vocabulary-exercise,
#thinking-language .contraction-exercise {
    margin: 25px 0;
}

#thinking-language .vocab-question,
#thinking-language .contraction-item {
    margin: 20px 0;
    padding: 15px;
    background-color: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #5c4033;
}

#thinking-language h2 {
    color: #5c4033;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

/* Fix for Firefox */
@-moz-document url-prefix() {
    select {
        background-image: none;
        padding-right: 20px;
    }
}


