/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
    body {
      font-family: Arial, sans-serif;
      background: #f7f7f7;
      color: #222;
      margin: 0;
      padding: 0;
    }
    .header {
      background: #003366;
      color: #fff;
      padding: 20px;
    }
    .header h1 {
      margin: 0;
      font-size: 24px;
    }
    .nav {
      background: #e6e6e6;
      padding: 10px 20px;
    }
    .nav a {
      margin-right: 15px;
      color: #003366;
      text-decoration: none;
      font-weight: bold;
    }
    .container {
      display: flex;
      padding: 20px;
      /* Điều chỉnh để các thanh bên và nội dung chính phù hợp */
    }
    .sidebar {
      width: 220px;
      /* Thanh bên trái */
      padding-right: 20px;
    }
    .sidebar-right {
      width: 200px; /* Độ rộng cho thanh bên phải */
      padding-left: 20px;
      border-left: 1px solid #ccc; /* Đường kẻ phân cách */
      margin-left: 20px; /* Khoảng cách với nội dung chính */
    }
    .sidebar ul {
      list-style: none;
      padding: 0;
    }
    .sidebar ul li {
      margin-bottom: 8px;
    }
    .sidebar ul li a {
      color: #003366;
      text-decoration: none;
    }
    .sidebar ul li a:hover {
      text-decoration: underline;
    }
    .main {
      flex: 1;
      /* Cho phép nội dung chính chiếm không gian còn lại */
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    table th, table td {
      border: 1px solid #ccc;
      padding: 8px 12px;
      text-align: left;
    }
    table th {
      background: #e6e6e6;
      font-weight: bold;
    }
    .footer {
      background: #003366;
      color: #fff;
      text-align: center;
      padding: 12px;
      margin-top: 40px;
    }
    .sidebar {
      width: 220px;
      /* Thanh bên trái */
      padding-right: 20px;
      /* THÊM THANH NGĂN CÁCH DỌC Ở ĐÂY */
      border-right: 1px solid #ccc; /* Thêm đường viền dọc */
      margin-right: 20px; /* Tạo khoảng cách với nội dung chính */
    }
    .sidebar ul li {
      margin-bottom: 8px;
    }
    .nav a:hover {
  color: #ff6600; 
  text-decoration: underline; 
  cursor: pointer; 
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
