.coach-action-builder { margin-top: 24px; }
.coach-action-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid #d9e6ef;
  border-radius: 12px;
  background: #f8fbfd;
}
.coach-action-form button { align-self: end; }
.coach-action-queue, .athlete-action-list { display: grid; gap: 10px; margin-top: 14px; }
.coach-action-queue article, .athlete-action-list article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 15px;
  border: 1px solid #d9e6ef;
  border-left: 5px solid #0b68c9;
  border-radius: 10px;
  background: #fff;
}
.coach-action-queue article.is-overdue, .athlete-action-list article.is-overdue { border-left-color: #dc2626; background: #fff8f8; }
.coach-action-queue article.is-complete, .athlete-action-list article.is-complete { border-left-color: #16a34a; opacity: .75; }
.coach-action-queue span, .athlete-action-list span { display: block; color: #64748b; font-size: 12px; font-weight: 800; }
.coach-action-queue strong, .athlete-action-list strong { display: block; margin: 4px 0; color: #102338; }
.coach-action-queue small, .athlete-action-list small { color: #64748b; }
.coach-action-buttons { display: flex; gap: 7px; flex-wrap: wrap; }
.athlete-actions-card { margin: 18px 0; padding: 20px; border: 1px solid #d9e6ef; border-radius: 14px; background: #fff; }
.athlete-actions-card header { display: flex; justify-content: space-between; gap: 12px; align-items: end; }
.athlete-actions-card header span { color: #0b68c9; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.athlete-actions-card header h2 { margin: 4px 0 0; color: #102338; }
@media (max-width: 680px) {
  .coach-action-form { grid-template-columns: 1fr; }
  .coach-action-queue article, .athlete-action-list article { align-items: stretch; flex-direction: column; }
}
