.colExam {
  border-right: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  overflow: hidden; 
}
.item {
  display: flex;
  flex: 1;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden; 
}
.item .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url("../../public/img/course/open-textbook.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.item .text {
  margin-left: 10px;
  flex-grow: 1;
  word-wrap: break-word; /* Chia từ dài thành nhiều dòng */
  word-break: break-word; /* Cắt từ khi quá dài */
}
.item .text a:hover {
  color: #3c3939;
}

/* Remove border-right for the last column in each row */
@media (min-width: 1200px) {
  .row-cols-xl-5 > .colExam:nth-child(5n) {
    border-right: none;
  }
  /* .row-cols-xl-5 > .colExam:nth-last-child(-n + 5) .item {
    border-bottom: none;
  } */
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .row-cols-lg-4 > .colExam:nth-child(4n) {
    border-right: none;
  }
  /* .row-cols-lg-4 > .colExam:nth-last-child(-n + 4) .item {
    border-bottom: none;
  } */
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .row-cols-md-3 > .colExam:nth-child(3n) {
    border-right: none;
  }
  /* .row-cols-md-3 > .colExam:nth-last-child(-n + 3) .item {
    border-bottom: none;
  } */
}
@media (max-width: 767.98px) {
  .row-cols-2 > .colExam:nth-child(2n) {
    border-right: none;
  }
  /* .row-cols-2 > .colExam:nth-last-child(-n + 2) .item {
    border-bottom: none;
  } */
}