.doctor-schedule {
  --primary: #14b8a6;
  --primary-dark: #0f766e;
  --primary-light: #eff6ff;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --background: #f8fafc;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.11);
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.doctor-schedule .schedule-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 28px 30px;
  color: #fff;
  background: linear-gradient(135deg, #14b8a6 0%, #0e8a7b 55%, #075a53 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}
.doctor-schedule .schedule-header::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.doctor-schedule .schedule-header::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: 130px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.doctor-schedule .schedule-header__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.doctor-schedule .schedule-header__title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.doctor-schedule .schedule-header__icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  font-size: 27px;
  backdrop-filter: blur(5px);
}
.doctor-schedule .schedule-header h1 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.4px;
}
.doctor-schedule .schedule-header p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.doctor-schedule .schedule-header__date {
  position: relative;
  z-index: 2;
  min-width: 205px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  backdrop-filter: blur(8px);
}
.doctor-schedule .schedule-header__date > i {
  font-size: 22px;
}
.doctor-schedule .schedule-header__date small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}
.doctor-schedule .schedule-header__date strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}
.doctor-schedule .schedule-filter {
  display: grid;
  grid-template-columns: minmax(250px, 1.7fr) minmax(160px, 0.8fr) minmax(190px, 1fr) auto;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.doctor-schedule .filter-item {
  min-width: 0;
}
.doctor-schedule .filter-item label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}
.doctor-schedule .filter-item label i {
  color: var(--primary);
  font-size: 14px;
}
.doctor-schedule .filter-item select {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 14px;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid #dbe3ed;
  border-radius: 11px;
  outline: none;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
}
.doctor-schedule .filter-item select:hover {
  background: #fff;
  border-color: #93c5fd;
}
.doctor-schedule .filter-item select:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.doctor-schedule .filter-item--search .input-icon {
  position: relative;
}
.doctor-schedule .filter-item--search .input-icon input {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 45px 0 44px;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid #dbe3ed;
  border-radius: 11px;
  outline: none;
  font-size: 13px;
  transition: 0.2s ease;
}
.doctor-schedule .filter-item--search .input-icon input::-moz-placeholder {
  color: #94a3b8;
}
.doctor-schedule .filter-item--search .input-icon input::placeholder {
  color: #94a3b8;
}
.doctor-schedule .filter-item--search .input-icon input:hover {
  background: #fff;
  border-color: #93c5fd;
}
.doctor-schedule .filter-item--search .input-icon input:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.doctor-schedule .filter-item--search .input-icon > i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 17px;
  pointer-events: none;
}
.doctor-schedule .btn-reset {
  align-self: end;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 18px;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #dbe3ed;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: 0.2s ease;
}
.doctor-schedule .btn-reset:hover {
  color: var(--primary);
  background: var(--primary-light);
  border-color: #93c5fd;
}
.doctor-schedule .btn-reset i {
  font-size: 14px;
}
.doctor-schedule .schedule-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.doctor-schedule .summary-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: 0.2s ease;
}
.doctor-schedule .summary-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.doctor-schedule .summary-item span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 11px;
}
.doctor-schedule .summary-item strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 750;
}
.doctor-schedule .summary-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 19px;
}
.doctor-schedule .summary-icon--blue {
  color: #2563eb;
  background: #eff6ff;
}
.doctor-schedule .summary-icon--green {
  color: #059669;
  background: #ecfdf5;
}
.doctor-schedule .summary-icon--orange {
  color: #ea580c;
  background: #fff7ed;
}
.doctor-schedule .summary-icon--gray {
  color: #64748b;
  background: #f1f5f9;
}
.doctor-schedule .schedule-section {
  width: 100%;
}
.doctor-schedule .section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}
.doctor-schedule .section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 750;
}
.doctor-schedule .section-heading p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}
.doctor-schedule .section-heading .doctor-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}
.doctor-schedule .doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.doctor-schedule .doctor-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}
.doctor-schedule .doctor-card.is-visible {
  animation: doctorCardIn 0.3s ease both;
}
.doctor-schedule .doctor-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.doctor-schedule .doctor-card.is-hidden {
  display: none;
}
.doctor-schedule .doctor-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
}
.doctor-schedule .doctor-card__body {
  flex: 1;
  padding: 0 18px 18px;
}
.doctor-schedule .doctor-card__footer {
  margin-top: auto;
  padding: 13px 18px 16px;
  border-top: 1px solid #eef2f7;
}
@keyframes doctorCardIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.doctor-schedule .doctor-avatar {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(37, 99, 235, 0.2);
}
.doctor-schedule .doctor-avatar span {
  font-size: 17px;
  font-weight: 800;
}
.doctor-schedule .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: #059669;
  background: #ecfdf5;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.doctor-schedule .status > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.doctor-schedule .doctor-card__body h3 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 750;
  letter-spacing: -0.2px;
}
.doctor-schedule .doctor-specialist {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 11px;
}
.doctor-schedule .doctor-specialist i {
  color: #94a3b8;
  font-size: 13px;
}
.doctor-schedule .doctor-schedule-time {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.doctor-schedule .schedule-row {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 12px;
  padding: 11px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  transition: 0.2s ease;
}
.doctor-schedule .schedule-row:hover {
  border-color: #bfdbfe;
  background: #f8fbff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.07);
}
.doctor-schedule .schedule-day {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  color: #1d4ed8;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 11px;
  text-align: center;
}
.doctor-schedule .schedule-day__icon {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  color: #2563eb;
  background: #fff;
  border-radius: 7px;
  font-size: 13px;
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.1);
}
.doctor-schedule .schedule-day__label {
  display: block;
  color: #1e40af;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.doctor-schedule .schedule-detail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 3px 2px;
}
.doctor-schedule .schedule-detail__poli {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}
.doctor-schedule .schedule-detail__poli i {
  flex-shrink: 0;
  color: #64748b;
  font-size: 13px;
}
.doctor-schedule .schedule-detail__time {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.doctor-schedule .practice-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  font-size: 10px;
}
.doctor-schedule .practice-time__label {
  color: #64748b;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.doctor-schedule .practice-time strong {
  color: var(--text);
  font-size: 11px;
  font-weight: 750;
}
.doctor-schedule .practice-time i {
  color: var(--primary);
  font-size: 11px;
}
.doctor-schedule .doctor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.doctor-schedule .doctor-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  color: var(--text-secondary);
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 7px;
  font-size: 10px;
}
.doctor-schedule .doctor-meta span i {
  color: #64748b;
  font-size: 11px;
}
.doctor-schedule .btn-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: var(--primary);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.doctor-schedule .btn-detail i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 7px;
  font-size: 13px;
  transition: 0.2s ease;
}
.doctor-schedule .btn-detail:hover {
  color: var(--primary-dark);
}
.doctor-schedule .btn-detail:hover i {
  color: #fff;
  background: var(--primary);
  transform: translateX(3px);
}
.doctor-schedule .empty-state {
  display: none;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  text-align: center;
}
.doctor-schedule .empty-state.is-show {
  display: flex;
}
.doctor-schedule .empty-state__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 50%;
  font-size: 25px;
}
.doctor-schedule .empty-state h3 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 16px;
  font-weight: 750;
}
.doctor-schedule .empty-state p {
  max-width: 420px;
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .doctor-schedule .schedule-filter {
    grid-template-columns: 1fr 1fr;
  }
  .doctor-schedule .schedule-filter .filter-item--search {
    grid-column: 1/-1;
  }
  .doctor-schedule .schedule-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .doctor-schedule {
    padding: 14px;
  }
  .doctor-schedule .schedule-header__content {
    align-items: flex-start;
    flex-direction: column;
  }
  .doctor-schedule .schedule-header__date {
    width: 100%;
    box-sizing: border-box;
  }
  .doctor-schedule .doctor-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .doctor-schedule {
    padding: 10px;
  }
  .doctor-schedule .schedule-header {
    padding: 18px;
    border-radius: 15px;
  }
  .doctor-schedule .schedule-header__title {
    align-items: flex-start;
    gap: 12px;
  }
  .doctor-schedule .schedule-header__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 21px;
  }
  .doctor-schedule .schedule-header h1 {
    font-size: 21px;
  }
  .doctor-schedule .schedule-header p {
    font-size: 12px;
  }
  .doctor-schedule .schedule-filter {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
    border-radius: 13px;
  }
  .doctor-schedule .schedule-filter .filter-item--search {
    grid-column: auto;
  }
  .doctor-schedule .schedule-filter .btn-reset {
    width: 100%;
  }
  .doctor-schedule .schedule-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .doctor-schedule .summary-item {
    gap: 8px;
    padding: 11px;
  }
  .doctor-schedule .summary-item .summary-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    font-size: 15px;
  }
  .doctor-schedule .summary-item span {
    font-size: 9px;
  }
  .doctor-schedule .summary-item strong {
    font-size: 16px;
  }
  .doctor-schedule .section-heading h2 {
    font-size: 17px;
  }
  .doctor-schedule .section-heading .doctor-count {
    padding: 6px 8px;
    font-size: 10px;
  }
  .doctor-schedule .doctor-card__top {
    padding: 15px 15px 11px;
  }
  .doctor-schedule .doctor-card__body {
    padding: 0 15px 15px;
  }
  .doctor-schedule .doctor-card__footer {
    padding: 11px 15px 14px;
  }
  .doctor-schedule .doctor-avatar {
    width: 47px;
    height: 47px;
    border-radius: 12px;
  }
  .doctor-schedule .doctor-avatar span {
    font-size: 15px;
  }
  .doctor-schedule .doctor-card__body h3 {
    font-size: 16px;
  }
  .doctor-schedule .schedule-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 9px;
    padding: 8px;
    border-radius: 11px;
  }
  .doctor-schedule .schedule-day {
    min-height: 65px;
    padding: 6px;
    border-radius: 9px;
  }
  .doctor-schedule .schedule-day__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    font-size: 11px;
  }
  .doctor-schedule .schedule-day__label {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
  .doctor-schedule .schedule-detail__poli {
    font-size: 11px;
  }
  .doctor-schedule .schedule-detail__poli i {
    font-size: 11px;
  }
  .doctor-schedule .practice-time {
    padding: 5px 6px;
    gap: 4px;
  }
  .doctor-schedule .practice-time__label {
    font-size: 8px;
  }
  .doctor-schedule .practice-time strong {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .doctor-schedule .schedule-summary {
    grid-template-columns: 1fr;
  }
  .doctor-schedule .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .doctor-schedule .doctor-card__top {
    align-items: flex-start;
    flex-direction: column;
  }
  .doctor-schedule .status {
    align-self: flex-start;
  }
  .doctor-schedule .schedule-row {
    grid-template-columns: 75px minmax(0, 1fr);
  }
  .doctor-schedule .schedule-day__label {
    font-size: 9px;
  }
}/*# sourceMappingURL=jadwal.css.map */