 

/* Container to ensure the table is centered and responsive */
.schedule-table-container {
  width: 100%;
  max-width: 1200px; /* Optional: you can limit the maximum width */
  margin: 0 auto;
}

/* Styling the table */
.unique-schedule-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

.unique-schedule-table .unique-header-cell, 
.unique-schedule-table .unique-name-cell,
.unique-schedule-table .unique-location-cell,
.unique-schedule-table .unique-cell {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
}

/* Table Header styling */
.unique-schedule-table .unique-header-cell {
  background-color: #dda290;
  color: white;
  font-weight: bold;
}

/* Styling for the table cells (e.g. location column) */
.unique-schedule-table .unique-location-cell {
  background-color: #bebbbba2;
  font-weight: bold;
}


/* Styling for the table cells (e.g. name column) */
.unique-schedule-table .unique-name-cell {
  background-color: #f9f9f9;
  font-weight: bold;
}

/* Regular table cells */
.unique-schedule-table .unique-cell {
  background-color: #fff;
}

/* Even rows have a different background color for better visibility */
.unique-schedule-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.unique-schedule-table tr:hover {
  background-color: #e0f7fa; /* Slight hover effect */
}

@media (max-width: 768px) {
  /* Adjust font size and padding for smaller screens */
  .unique-schedule-table .unique-header-cell, 
  .unique-schedule-table .unique-name-cell, 
  .unique-schedule-table .unique-location-cell,
  .unique-schedule-table .unique-cell{
    font-size: 12px; /* Reduce font size */
    padding: 8px;
  }

  /* Stack table rows in a mobile-friendly way */
  .unique-schedule-table {
    display: block;
    width: 100%;
  }

  .unique-schedule-table thead {
    display: none; /* Hide header on mobile */
  }

  .unique-schedule-table tbody, 
  .unique-schedule-table tr {
    display: block;
    width: 100%;
    margin-bottom: 1em; /* Space between rows */
  }

  .unique-schedule-table td {
    display: block;
    text-align: right;
    padding: 10px;
    position: relative;
  }

  .unique-schedule-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #dda290;
  }

  /* Optional: Make the name column stand out */
  .unique-schedule-table .unique-name-cell {
    font-weight: bold;
  }

  /* Hide the Notes column to avoid cluttering the screen */
  .unique-schedule-table .unique-header-cell:nth-child(9),
  .unique-schedule-table .unique-cell:nth-child(9) {
    display: none;
  }
}
