/* Custom table enhancements for a modern look */
.custom-table {
  background: var(--bs-white, #fff);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07), 0 8px 32px rgba(44,62,80,0.04);
}
.custom-table thead th {
  background: linear-gradient(90deg, #f47721 0%, #ffb36b 100%);
  color: #fff;
  font-weight: 600;
  border: none;
}
.custom-table tbody tr {
  transition: box-shadow 0.2s, background 0.2s;
}
.custom-table tbody tr:hover {
  background: #fff7ef;
  box-shadow: 0 2px 8px rgba(244,119,33,0.07);
  z-index: 2;
  position: relative;
}
.custom-table td, .custom-table th {
  vertical-align: middle;
  border: none;
}
.custom-table td {
  font-size: 1rem;
  color: #3a3a3a;
}
.custom-table .badge {
  font-size: 0.92em;
  padding: 0.45em 0.8em;
  border-radius: 0.5em;
}
