﻿ .chonlop a 
 {
 	font-size:1.6em;
  display: block;              /* Giúp thẻ a chiếm toàn bộ vùng */
  border: 2px solid #007bff;   /* Viền xanh */
  border-radius: 10px;         /* Bo góc */
  padding: 8px 12px;           /* Khoảng cách bên trong */
  text-align: center;          /* Căn giữa chữ */
  text-decoration: none;       /* Bỏ gạch chân */
  color: #007bff;              /* Màu chữ xanh */
  transition: all 0.3s ease;   /* Hiệu ứng mượt khi hover */
  margin-bottom:10px;
  margin-top:10px;
}

.chonlop a:hover {
  border-color: #28a745;       /* Đổi viền sang màu xanh lá */
  color: #28a745;              /* Đổi màu chữ theo viền */
  background-color: #f0f8ff;   /* Nền nhạt nhẹ khi hover */
}
 .chonDe a {
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 124px;
  border: 2px solid #007bff;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  background-image: linear-gradient(to right, #091af2, #0818e5);
  transition: all 0.3s ease;
  margin: 5px 0;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.chonDe a:hover {
  border-color: #0040ff;
  background-image: linear-gradient(to right, #0040ff, #00bfff);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
  transform: translateY(-3px);
}