.hide_mobile {
  display: none;
}
#tabs-chinhsach  > ul {
  padding-left: 20px;
}
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  /* Màu nền bán trong suốt */
  z-index: 9999;
  /* Đảm bảo hoạt ảnh nằm trên tất cả các phần tử khác */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#amlab_nav_baohanh_card {
  background: transparent;
  box-shadow: none;
}

.amlab_nav_baohanh {
  gap: 5px;
}

.amlab_nav_baohanh li {
  border-radius: 5px;
}

.amlab_nav_baohanh li a {
  background: #000 !important;
  padding: 0 15px;
  line-height: 25px;
  border-radius: 5px;
  color: #fff !important;
  font-size: 14px !important;
}

.amlab_nav_baohanh li a.active {
  background: red !important;
}

.amlab_product_select_item {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

@media only screen and (max-width: 48em) {
  .footable-detail-row {
    border: none;
  }

  /* Bảng chi tiết bên trong */
  .footable-details {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    table-layout: fixed;
    /* Đảm bảo bảng không tự động mở rộng vượt quá giới hạn */
  }

  /* Các hàng trong bảng chi tiết */
  .footable-details tr {
    border-bottom: 1px solid #f0f0f0;
  }

  /* Cột tiêu đề (Tên khách hàng, Số điện thoại, Số lượng sản phẩm) */
  .footable-details th {
    font-weight: bold;
    color: #333;
    padding: 10px 15px;
    text-align: left;
    width: 40%;
    white-space: nowrap;
    line-height: normal;
    /* Ngăn tiêu đề xuống dòng */
  }

  /* Cột dữ liệu */
  .footable-details td {
    font-size: 16px;
    color: #333;
    padding: 10px 15px;
    text-align: left;
    word-break: break-word;
    /* Cho phép nội dung xuống dòng nếu quá dài */
  }

  /* Hàng chứa nút "Xem danh sách sản phẩm bảo hành" */
  .footable-details tr:last-child {
    border-bottom: none;
  }

  .amlab_nav_baohanh {
    overflow-x: scroll;
    flex-wrap: nowrap !important;
  }

  .amlab_nav_baohanh li {
    width: 49%;
    flex: 0 0 auto !important;
  }

}