/* PT (Physical Therapy) Styles */

.pt-container {
  background: white;
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.pt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.pt-table thead {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.pt-table th {
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.pt-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.pt-table tbody tr:hover {
  background: var(--bg-dark);
}

.pt-table td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

.pt-table .exercise-name-cell {
  text-align: left;
  font-weight: 500;
  min-width: 350px;
}

.exercise-link {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 500;
}

.exercise-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.exercise-header {
  text-align: left !important;
}

.pt-table .day-header {
  text-align: center;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
}

.pt-table input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
