/* Import font từ Google Fonts (tùy chọn) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Source+Code+Pro:wght@400;700&display=swap');

/* Reset CSS mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Màu nền nhạt, trung tính */
    color: #333; /* Màu chữ dễ đọc */
}

.container {
    max-width: 800px; /* Điều chỉnh chiều rộng tối đa phù hợp */
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #343a40; /* Màu xám đậm */
    text-align: center;
    margin-bottom: 2rem;
}
/* Bố cục bài toán */
#problem {
    font-family: 'Source Code Pro', monospace; /* Sử dụng font monospace cho công thức toán */
    font-size: 24px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9; /* Nền nhạt cho dễ nhìn */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Ô nhập liệu */
input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 15px;
}

input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25); /* Hiệu ứng focus */
}

/* Nút bấm */
button {
    background-color: #007bff; /* Màu xanh dương */
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Hiển thị kết quả */
#result {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.correct {
    color: #28a745; /* Màu xanh lá cây cho kết quả đúng */
}

.incorrect {
    color: #dc3545; /* Màu đỏ cho kết quả sai */
}

/* Điểm số */
#score {
    margin-top: 20px;
    font-size: 16px;
}

/* Lịch sử làm bài */
#historyContainer {
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f0f0f0;
}

/* Thống kê học tập */
#statsContainer {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        margin: 30px 15px;
        padding: 20px;
    }

    #problem {
        font-size: 20px;
    }
}