/* File: assets/css/schedule.css */

/* Table Layout */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table th, .schedule-table td {
  border: 1px solid #e1e4e8;
  padding: 12px;
  vertical-align: top;
}
.schedule-table th {
  background-color: #f6f8fa;
  text-align: center;
  font-weight: bold;
}
.date-label {
  font-size: 0.85em;
  color: #586069;
  margin-bottom: 4px;
  display: block;
}

/* Buttons */
.btn-pill {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  text-decoration: none !important;
  margin-bottom: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.btn-lecture { background-color: #6f42c1; color: #fff !important; }
.btn-lecture:hover { background-color: #5a32a3; }
.btn-blue { background-color: #0366d6; color: #fff !important; }
.btn-blue:hover { background-color: #005cc5; }
.btn-recording { background-color: #f3f4f6; color: #6f42c1 !important; border: 1px solid #e1e4e8; }
.btn-recording:hover { background-color: #ebecf0; }

/* Circle Badges */
.badge-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: bold;
  margin-right: 4px;
  vertical-align: middle;
}
.bg-blue   { background-color: #0366d6; } /* Reading */
.bg-red    { background-color: #d73a49; } /* Canvas */
.bg-green  { background-color: #28a745; } /* Optional */
.bg-yellow { background-color: #ffd33d; color: #24292e; } /* Hands-on */

.cell-notes {
  margin-top: 6px;
  color: #24292e;
  font-size: 14px;
  line-height: 1.4;
}
