/* ========== 治疗师管理 ========== */
/* 已在 patients.css 中定义 therapists-grid 和 therapist-card */

/* ========== 康复方案列表 ========== */
.plans-list { display: flex; flex-direction: column; gap: 16px; }
.plan-card {
  background: white; border-radius: 8px; padding: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.plan-info { flex: 1; }
.plan-info h4 { font-size: 16px; margin-bottom: 4px; }
.plan-info p { font-size: 13px; color: #666; }
.plan-meta { display: flex; gap: 16px; font-size: 13px; color: #999; margin-top: 8px; }
.plan-actions { display: flex; gap: 8px; }
