/* ================================================= */
/* 1. THIẾT LẬP CHUNG (RESET) */
/* ================================================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Màu nền nhẹ nhàng */
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

.container, .class-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================================================= */
/* 2. HEADER CHÍNH (main-header) */
/* ================================================= */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

/* Logo */
.logo-image {
    height: 40px; /* Điều chỉnh kích thước logo */
}

/* Thanh Tìm kiếm */
.search-bar {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 400px;
    margin: 0 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.search-bar input {
    border: none;
    padding: 8px 15px;
    flex-grow: 1;
    outline: none;
    background: transparent;
}

.search-icon-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
}

.search-icon-btn:hover {
    background-color: #0056b3;
}

/* Menu phụ (sub-menu) */
.sub-menu a {
    color: #333;
    padding: 8px 10px;
    margin-left: 10px;
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.sub-menu a .icon {
    margin-right: 5px;
}

.btn-login {
    background-color: #28a745;
    color: white !important;
    border-radius: 5px;
    padding: 8px 15px !important;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #218838;
    text-decoration: none;
}

/* ================================================= */
/* 3. THANH MENU LỚP HỌC (class-menu) */
/* ================================================= */
.class-menu {
    background-color: #343a40; /* Màu tối cho menu lớp */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.class-container {
    display: flex;
    justify-content: flex-start; /* Căn trái */
}

.class-item {
    color: #fff;
    padding: 12px 18px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.class-item:hover,
.class-item.active {
    background-color: #f7931e; /* Màu cam nổi bật khi active/hover */
    color: #fff;
    text-decoration: none;
}

.home-icon {
    font-size: 18px;
}

.extra-menu {
    margin-left: auto; /* Đẩy mục này sang phải */
}

/* ================================================= */
/* 4. KHUNG NỘI DUNG CHÍNH (content-wrapper) */
/* ================================================= */
.content-wrapper {
    display: flex;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================================= */
/* 5. SIDEBAR MÔN HỌC (subject-sidebar) */
/* ================================================= */
.subject-sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-right: 20px;
    overflow: hidden;
    height: fit-content; /* Giữ sidebar ôm nội dung */
}

.sidebar-title {
    background-color: #f7931e;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
}

.subject-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Tiêu đề nhóm môn (Môn chính, Xã hội, Tự nhiên) */
.subject-group-title {
    font-size: 13px;
    font-weight: bold;
    color: #555; 
    padding: 10px 15px 5px 15px;
    margin-top: 15px;
    text-transform: uppercase;
    border-top: 1px solid #eee;
}

.subject-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.subject-item:hover {
    background-color: #e9ecef;
    color: #f7931e;
    text-decoration: none;
}

.subject-item.active {
    background-color: #007bff;
    color: white;
/* ================================================= */
/* 6. Nút Call-to-action (CTA) ôn tập thi */
/* ================================================= */

.exam-review-cta {
    display: block; /* Chiếm toàn bộ chiều rộng */
    text-align: center;
    padding: 15px 20px;
    margin: 20px 0; /* Khoảng cách trên dưới */
    background-color: #e53935; /* Màu đỏ nổi bật */
    color: white;
    text-decoration: none; /* Bỏ gạch chân */
    font-weight: bold;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.exam-review-cta:hover {
    background-color: #d32f2f; /* Màu đỏ đậm hơn khi hover */
}