* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7f6;
  color: #333333;
  line-height: 1.6;
  padding: 20px;
}

.workout-container {
  max-width: 900px;
  margin: 0 auto;
}

.workout-header {
  text-align: center;
  margin-bottom: 30px;
}
.workout-header h1 {
  font-size: 2rem;
  color: #111827;
}

.workout-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  padding: 20px;
  border-left: 6px solid #ccc;
}
.workout-card h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.workout-card.type-a {
  border-left-color: #2563eb;
}
.workout-card.type-a h2 {
  color: #2563eb;
}
.workout-card.type-a th {
  background-color: rgba(37, 99, 235, 0.08);
  color: dark-color-mix(#2563eb);
}
.workout-card.type-b {
  border-left-color: #16a34a;
}
.workout-card.type-b h2 {
  color: #16a34a;
}
.workout-card.type-b th {
  background-color: rgba(22, 163, 74, 0.08);
  color: dark-color-mix(#16a34a);
}
.workout-card.type-c {
  border-left-color: #dc2626;
}
.workout-card.type-c h2 {
  color: #dc2626;
}
.workout-card.type-c th {
  background-color: rgba(220, 38, 38, 0.08);
  color: dark-color-mix(#dc2626);
}
.workout-card.type-d {
  border-left-color: #7c3aed;
}
.workout-card.type-d h2 {
  color: #7c3aed;
}
.workout-card.type-d th {
  background-color: rgba(124, 58, 237, 0.08);
  color: dark-color-mix(#7c3aed);
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
table th, table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}
table th {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
table tr:last-child td {
  border-bottom: none;
}
table td {
  font-size: 1rem;
}
table td:nth-child(2), table td:nth-child(3) {
  text-align: center;
  font-weight: bold;
}

small {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: normal;
}/*# sourceMappingURL=style.css.map */