/* Randevu takvimi — bağımsız stil dosyası (Turhost uyumlu) */

.appt-pick {
  padding: 14px;
  border: 2px solid rgba(200, 147, 42, 0.22);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.appt-pick--times {
  margin-top: 10px;
  border-color: rgba(200, 147, 42, 0.28);
  background: #fffdf6;
}

.appt-cal {
  width: 100%;
}

.appt-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.appt-cal__title {
  flex: 1;
  margin: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #072033;
}

.appt-cal__arrow {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(200, 147, 42, 0.45);
  border-radius: 10px;
  background: #fff;
  color: #072033;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.appt-cal__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.appt-cal__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  table-layout: fixed;
}

.appt-cal__table th {
  padding: 6px 2px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(7, 32, 51, 0.5);
  text-align: center;
}

.appt-cal__table td {
  padding: 0;
  text-align: center;
  vertical-align: middle;
  height: 40px;
}

.appt-cal__day {
  display: block;
  width: 100%;
  height: 38px;
  margin: 0 auto;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #072033;
  cursor: pointer;
  padding: 0;
}

.appt-cal__day:hover {
  background: rgba(240, 192, 64, 0.22);
  border-color: rgba(200, 147, 42, 0.5);
}

.appt-cal__day.is-today {
  border-color: rgba(7, 32, 51, 0.2);
  background: rgba(7, 32, 51, 0.05);
}

.appt-cal__day.is-selected {
  background: #f0c040;
  border-color: #c8932a;
  color: #072033;
  box-shadow: 0 2px 8px rgba(200, 147, 42, 0.35);
}

.appt-cal__mute {
  display: block;
  line-height: 38px;
  font-size: 0.85rem;
  color: rgba(7, 32, 51, 0.2);
  user-select: none;
}

.appt-slots__label {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(7, 32, 51, 0.75);
  text-align: center;
}

.appt-slots-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
  table-layout: fixed;
}

.appt-slots-table td {
  padding: 0;
  text-align: center;
}

.appt-slot {
  display: block;
  width: 100%;
  padding: 10px 4px;
  border: 2px solid rgba(200, 147, 42, 0.45);
  border-radius: 10px;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  color: #072033;
  cursor: pointer;
}

.appt-slot:hover:not(:disabled) {
  background: rgba(240, 192, 64, 0.18);
  border-color: #c8932a;
}

.appt-slot.is-selected {
  background: #f0c040;
  border-color: #c8932a;
  box-shadow: 0 2px 8px rgba(200, 147, 42, 0.35);
}

.appt-slot--off,
.appt-slot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

@media (max-width: 480px) {
  .appt-cal__arrow {
    width: 32px;
    height: 32px;
  }

  .appt-cal__table td {
    height: 36px;
  }

  .appt-cal__day {
    height: 34px;
    font-size: 0.8rem;
  }

  .appt-cal__mute {
    line-height: 34px;
  }
}
