/* ------------------ Table Container ------------------ */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto 1rem auto;
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* ------------------ Responsive Table ------------------ */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.responsive-table thead {
  background-color: #343a40;
  color: white;
}

.responsive-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
[data-theme="dark"] .responsive-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.responsive-table td,
.responsive-table th {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
  vertical-align: top;
}

/* ------------------ Total Row ------------------ */
.responsive-table .total-row td {
  font-weight: bold;
  background-color: #f9f9f9;
}
[data-theme="dark"] .responsive-table .total-row td {
  background-color: #222;
  color: var(--orange, #ff7e00);
}

/* ------------------ Dark Theme Table Body ------------------ */
[data-theme="dark"] .responsive-table tbody {
  color: white;
}
