* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7faf7; /* Nền trắng ngả xanh siêu nhạt giúp dịu mắt */
    padding: 50px 20px;
}

.khungtt {
    background-color: #ffffff;             
    border: 2px solid #5fdb49;           
    border-radius: 16px;                   
    padding: 30px 40px;                   
    max-width: 1100px;                    
    margin: 0 auto 50px auto;  /* Căn giữa khung & đẩy phần Sách bên dưới ra 50px */
    box-shadow: 0 8px 20px rgba(95, 219, 73, 0.12); /* Đổ bóng xanh lá */
}

.khungtt .main {
    margin-top: 0;
    margin-bottom: 25px;
}

.main {
    text-align: center;
    color: #5fdb49;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.truong {
    display: flex; /* 🔑 Bật chế độ Flexbox */
    justify-content: space-between;
    align-items: center;
    color: #5fdb49;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px; 
}

.truong .tt {
    width: 350px;
    text-align: left;
    color:#5fdb49;
    font-size:20px;
}

.khung {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Khoảng cách đều giữa các thẻ */
    flex-wrap: wrap; /* Tự nhảy hàng nếu màn hình hẹp */
}

.the {
    background-color: #ffffff;
    border: 2px solid #5fdb49;
    border-radius: 12px; /* Bo tròn góc hiện đại */
    padding: 20px 15px;
    width: 190px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.the:hover {
    transform: translateY(-8px) scale(1.05); /* Để ảnh nhích lên xíu */
    border-color: #2e7d32; /* Đổi viền sang màu xanh đậm hơn */
    box-shadow: 0 12px 24px rgba(46, 125, 50, 0.25); /* Đổ bóng xanh lá xịn xò */
}

.the h3 {
    margin-bottom: 15px;
}

.the h3 a {
    color: #5fdb49; 
    text-decoration: none; /* Bỏ gạch chân mặc định của link */
    font-size: 20px;
    font-weight: 700;
    transition: color 0.2s;
}

.the:hover h3 a {
    color: #1b5e20; /* Chữ đậm hơn nữa khi hover vào card */
}

.the img {
    width: 140px;
    height: 200px;
    object-fit: cover; /* Giữ chuẩn tỉ lệ ảnh không bị móp */
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}