.eat-question-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.eat-difficulty-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #4338ca;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.eat-question-content {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.eat-options-grid {
    display: grid;
    gap: 10px;
}

.eat-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    color: #1a202c;
    /* Darker text for better contrast */
    font-weight: 500;
}

.eat-option:hover:not(:disabled) {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.eat-option:disabled {
    cursor: default;
    opacity: 0.9;
    /* Less opacity reduction to keep it readable */
}

.eat-option.eat-correct {
    background-color: #f0fff4 !important;
    border-color: #48bb78 !important;
    color: #22543d !important;
    /* Dark green text */
    font-weight: 700;
}

.eat-option.eat-wrong {
    background-color: #fff5f5 !important;
    border-color: #f56565 !important;
    color: #742a2a !important;
    /* Dark red text */
    font-weight: 700;
}

.eat-option-key {
    font-weight: 800;
    margin-right: 10px;
    color: #4a5568;
}

.eat-result {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.eat-success {
    background: #d1fae5;
    color: #065f46;
}

.eat-error {
    background: #fee2e2;
    color: #991b1b;
}

.eat-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

.eat-btn-primary {
    background: #4f46e5;
    color: white;
}

.eat-btn-primary:hover {
    background: #4338ca;
}

.eat-btn-outline {
    background: transparent;
    border: 2px solid #4f46e5;
    color: #4f46e5;
}

.eat-btn-outline:hover {
    background: #eef2ff;
}