/* Appointment rescheduling */
.move-appointment-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}

.move-client-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #d96b95, #a84970);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 7px 16px rgba(177, 68, 108, .2);
}

.move-appointment-summary strong,
.move-appointment-summary small { display: block; }
.move-appointment-summary strong { font-size: 13px; }
.move-appointment-summary small { margin-top: 4px; color: var(--muted); font-size: 10px; }

.move-target-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  background: linear-gradient(115deg, #493440, #725164);
  color: #fff;
}

.move-target-date span {
  color: #edcddd;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.move-target-date strong { font-size: 12px; text-align: right; text-transform: capitalize; }
.move-time-picker { margin: 17px 0 0; padding: 0; border: 0; }
.move-time-picker legend { margin-bottom: 10px; color: var(--ink); font-size: 11px; font-weight: 700; }
.move-time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.move-time-option { position: relative; margin: 0 !important; }
.move-time-option input { position: absolute; opacity: 0; pointer-events: none; }
.move-time-option span {
  display: block;
  padding: 10px 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: .16s ease;
}

.move-time-option span:hover { border-color: #d4799b; background: #fff7fa; transform: translateY(-1px); }
.move-time-option input:checked + span { border-color: #c95882; background: #c95882; color: #fff; box-shadow: 0 6px 14px rgba(201, 88, 130, .22); }
.move-time-option input:focus-visible + span { outline: 3px solid rgba(201, 88, 130, .2); outline-offset: 2px; }
.move-time-picker > p { margin: 10px 0 0; color: var(--muted); font-size: 9px; }
.move-no-slots { padding: 18px; border: 1px dashed #dbbdc8; border-radius: 10px; background: var(--soft); text-align: center; }
.move-no-slots b,
.move-no-slots span { display: block; }
.move-no-slots b { font-size: 12px; }
.move-no-slots span { margin-top: 5px; color: var(--muted); font-size: 10px; }
.appointment-availability{width:100%}.availability-placeholder{padding:14px;border:1px dashed var(--line);border-radius:10px;background:var(--soft);color:var(--muted);font-size:10px;text-align:center}.appointment-availability .move-time-grid{max-height:190px;padding:2px;overflow-y:auto}
.dark .move-target-date { background: linear-gradient(115deg, #36262f, #5b3d4b); }
.dark .move-time-option span:hover { background: #3a2931; }

@media (max-width: 520px) {
  .move-target-date { display: block; }
  .move-target-date strong { display: block; margin-top: 5px; text-align: left; }
  .move-time-grid { grid-template-columns: repeat(3, 1fr); max-height: 210px; overflow-y: auto; padding: 2px; }
  .move-time-option span { padding: 11px 5px; }
}
