﻿/* Bootstrap Table Styles */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
  }

  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
  }

  .table tbody + tbody {
    border-top: 2px solid #dee2e6;
  }

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6;
  }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

/* Add more contextual classes as needed */

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #343a40;
  color: #fff;
}

/* Responsive Table Styles */
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

    .table-responsive-sm > .table-bordered {
      border: 0;
    }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

    .table-responsive-md > .table-bordered {
      border: 0;
    }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

    .table-responsive-lg > .table-bordered {
      border: 0;
    }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

    .table-responsive-xl > .table-bordered {
      border: 0;
    }
}

/* Add more responsive classes as needed */
