
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}


.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Trang trí nút "Về trang chủ" */
.btn-home {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #2980b9; /* Đổi màu xanh đậm hơn khi hover */
}

/* Khởi tạo danh sách bài tập (xóa dấu chấm mặc định của thẻ ul) */
.exercise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Xếp các link theo chiều dọc */
    gap: 12px; /* Khoảng cách giữa các bài tập */
}

/* Trang trí từng khối liên kết bài tập */
.exercise-list li a {
    display: block;
    background-color: #ecf0f1; /* Nền xám nhạt */
    color: #34495e;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 500;
    text-align: left; /* Căn trái chữ trong nút */
    transition: all 0.3s ease;
    border-left: 5px solid transparent; /* Viền trái tàng hình để làm hiệu ứng */
}

/* Hiệu ứng khi rê chuột vào bài tập */
.exercise-list li a:hover {
    background-color: #e0e6ed;
    color: #e74c3c; /* Chữ đổi sang màu đỏ */
    border-left: 5px solid #e74c3c; /* Hiện viền đỏ bên trái */
    transform: translateX(8px); /* Trượt nhẹ nút sang phải 8 pixel */
}