/* ========================================
   TABLE COMPONENTS - All table styles
   ======================================== */

/* General Table Styles */
.table-scroll {
  overflow: auto;
  border: 1px solid var(--muted-border-color, #e0e0e0);
  border-radius: .5rem;
}

table td, table th {
  white-space: nowrap;
}

/* Weekly Stats Table */
.weekly-stats-table {
  overflow-x: auto;
  border-radius: 0.5rem;
  background: rgba(26, 26, 46, 0.5);
}

.weekly-stats-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.weekly-stats-table th {
  background: rgba(0, 168, 255, 0.2);
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  border-bottom: 2px solid rgba(0, 168, 255, 0.3);
}

.weekly-stats-table td {
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.weekly-stats-table tr:hover {
  background: rgba(0, 168, 255, 0.05);
}

.week-cell {
  font-weight: 600;
  color: #00a8ff !important;
}

.dnp-row {
  background: rgba(255, 255, 255, 0.02) !important;
  opacity: 0.6;
}

.dnp-row:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

.dnp-cell {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.9rem;
  padding: 1rem;
}



