ul.list {
    list-style-type: disc; /* Thêm dấu chấm cho danh sách */
    padding-left: 20px; /* Thụt lề toàn bộ danh sách */
    margin: 0;
}

ul.list li {
    padding: 10px 0; /* Thêm khoảng cách giữa các mục */
    font-size: 16px; /* Cỡ chữ */
    color: #333; /* Màu chữ */
}

ul.list li::marker {
    color: #0077B3; /* Màu của dấu chấm */
    font-size: 18px; /* Kích thước dấu chấm */
}


.custom-table {
    width: 100%;
    height: 100%;
    border: 1px solid #595858;
    border-collapse: collapse;
  }
  
  .custom-table th,
  .custom-table td {
    border: 1px solid #595858;
    text-align: center;
    padding: 8px;
    background-color: #ffffff;
  }
  
  .custom-table .table-header {
    background-color: #d4d2d2;
  }
  
  .custom-table th.vertical-text {
    text-orientation: mixed;
    background-color: #f7e1c6;
  }
  
  .custom-table .text-right {
    text-align: right;
  }
  
  .table-header th {
    background-color: #c6d2f7;
    height: 44px;
  }
  
  .custom-table tbody tr:nth-child(odd) {
    background-color: #f7f7f7;
  }
  

  