.hds-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  font-family: inherit;
  color: #1f2937;
}

.hds-hero {
  border-radius: 24px;
  padding: 24px 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #eef7ff 0%, #f7fbff 50%, #ffffff 100%);
  border: 1px solid #e5eef8;
}

.hds-kicker {
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hds-hero h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
  color: #0f172a;
}

.hds-hero p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 15px;
}

.hds-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hds-filter-card {
  padding: 16px;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.hds-label {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.hds-select,
.hds-input {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  padding: 0 14px;
  font-size: 16px;
  background: #ffffff;
  color: #111827;
  box-sizing: border-box;
}

.hds-select:focus,
.hds-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hds-button {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.hds-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.hds-loading,
.hds-message {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 15px;
}

.hds-loading {
  background: #eff6ff;
  color: #1d4ed8;
}

.hds-message-info {
  background: #eff6ff;
  color: #1d4ed8;
}

.hds-message-warning {
  background: #fff7ed;
  color: #c2410c;
}

.hds-message-error {
  background: #fef2f2;
  color: #b91c1c;
}

.hds-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 14px;
}

.hds-result-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.hds-result-subtitle {
  margin-top: 4px;
  font-size: 14px;
  color: #64748b;
}

.hds-result-count {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.hds-day-section {
  margin-bottom: 18px;
}

.hds-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.hds-day-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.hds-day-count {
  font-size: 13px;
  color: #64748b;
}

.hds-doctor-list {
  display: grid;
  gap: 10px;
}

.hds-doctor-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.hds-doctor-avatar-wrap {
  flex: 0 0 auto;
}

.hds-doctor-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.hds-doctor-info {
  min-width: 0;
  flex: 1;
}

.hds-doctor-info h3 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
  line-height: 1.35;
}

.hds-doctor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}

.hds-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 700;
}

.hds-time {
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.hds-no-doctor {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
  color: #64748b;
  text-align: center;
}

.hds-empty {
  text-align: center;
  padding: 36px 20px;
  border-radius: 22px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
}

.hds-empty-icon {
  font-size: 34px;
  margin-bottom: 8px;
}

.hds-empty h3 {
  margin: 0;
  color: #0f172a;
}

.hds-empty p {
  margin: 8px 0 0;
  color: #64748b;
}

@media (min-width: 768px) {
  .hds-page {
    padding: 24px;
  }

  .hds-hero {
    padding: 32px;
  }

  .hds-hero h2 {
    font-size: 32px;
  }

  .hds-filter-card {
    grid-template-columns: 1.5fr 1fr auto;
    align-items: end;
  }

  .hds-filter-card .hds-label {
    display: none;
  }

  .hds-button {
    width: auto;
    min-width: 180px;
    padding: 0 20px;
  }

  .hds-doctor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}