.schedule-card {
  margin-top: 14px;
  padding: clamp(14px, 2vw, 22px);
}

.schedule-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.schedule-patient-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  padding: 10px 12px;
  text-align: left;
  background: rgba(17, 24, 33, 0.96);
}

.schedule-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(210, 174, 74, 0.56);
  background: rgba(210, 174, 74, 0.14);
  color: var(--mo-gold);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.schedule-detail {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.schedule-title {
  color: var(--mo-text);
  font-size: 16px;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-meta {
  color: var(--mo-muted);
  font-size: 12px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-empty {
  border: 1px dashed rgba(44, 54, 68, 0.9);
  border-radius: 14px;
  color: var(--mo-muted);
  padding: 12px;
  font-size: 13px;
}

.status-chip.online-status {
  border-color: rgba(120, 182, 108, 0.55);
  background: rgba(120, 182, 108, 0.16);
  color: var(--mo-green);
}

@media (max-width: 700px) {
  .schedule-card {
    margin-top: 8px;
    border-radius: 18px;
    padding: 10px;
  }

  .schedule-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .schedule-patient-card {
    min-height: 58px;
    padding: 8px 10px;
    gap: 9px;
    border-radius: 13px;
  }

  .schedule-initials {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .schedule-title {
    font-size: 14px;
  }

  .schedule-meta {
    font-size: 11px;
  }
}
