.practice-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
}

.controls button {
    padding: 12px 20px;
    font-size: 1rem;
    min-width: 150px;
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

.option-btn {
    padding: 15px;
    font-size: 1.1rem;
    background-color: white;
    color: #5d8aa8;
    border: 1px solid #ddd;
    transition: all 0.2s ease-in-out;
}

.option-btn:hover {
    background-color: #e6f2f5;
    transform: translateY(-2px);
    border-color: #a0c0d0;
}

.option-btn.correct {
    background-color: #a8d8b8;
    color: white;
    border-color: #7fbc95;
}

.option-btn.incorrect {
    background-color: #f8baba;
    color: white;
    border-color: #e88a8a;
}

.option-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.status-container {
    margin-top: 15px;
    padding: 12px;
    background-color: #e6f2f5;
    border-radius: 6px;
    width: 100%;
    text-align: center;
}

#status-text {
    font-size: 1.1rem;
    color: #4a7694;
    font-weight: 500;
}

.score-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    font-size: 1rem;
    color: #666;
    padding: 0 10px;
}
