.schedule-slot.empty {
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.schedule-slot.empty:hover,
.schedule-slot.empty:focus-within {
  border-color: #ff9f1c;
  background: rgba(255, 159, 28, 0.08);
  transform: translateY(-1px);
}

.schedule-slot.empty .schedule-detail p::after {
  content: "  •  Randevu eklemek için tıklayın";
  color: #ffad33;
  font-weight: 700;
}

.schedule-click-hint {
  width: 100%;
  margin: 10px 0 0;
  color: #ffad33 !important;
  font-weight: 700;
}

body.admin-modal-open {
  overflow: hidden;
}

.admin-extra-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 7, 12, 0.82);
  backdrop-filter: blur(5px);
}

.admin-extra-dialog {
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid #2b3340;
  border-radius: 24px;
  background: #151922;
  color: #f7f8fa;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  padding: 26px;
}

.admin-extra-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-extra-title {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
}

.admin-extra-subtitle {
  margin: 7px 0 0;
  color: #9fb8d5;
  line-height: 1.5;
}

.admin-extra-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid #343b48;
  border-radius: 13px;
  background: #0d1117;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.admin-extra-form,
.admin-extra-field {
  display: grid;
  gap: 9px;
}

.admin-extra-form {
  gap: 16px;
}

.admin-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-extra-label {
  font-weight: 750;
}

.admin-extra-field input,
.admin-extra-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #303744;
  border-radius: 14px;
  background: #0d1117;
  color: #fff;
  padding: 14px 15px;
  font: inherit;
}

.admin-extra-field textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-extra-field input:focus,
.admin-extra-field textarea:focus {
  outline: 2px solid rgba(255, 159, 28, 0.42);
  border-color: #ff9f1c;
}

.admin-extra-message {
  min-height: 22px;
  line-height: 1.45;
}

.admin-extra-message.error {
  color: #ff8c8c;
}

.admin-extra-message.success {
  color: #7de8a8;
}

.admin-extra-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.admin-extra-primary,
.admin-extra-secondary {
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-extra-primary {
  background: #ff9f1c;
  color: #101318;
}

.admin-extra-secondary {
  background: #262d38;
  color: #fff;
}

.admin-extra-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 640px) {
  .admin-extra-grid {
    grid-template-columns: 1fr;
  }

  .admin-extra-dialog {
    padding: 20px;
    border-radius: 20px;
  }

  .admin-extra-actions {
    flex-direction: column-reverse;
  }

  .admin-extra-actions button {
    width: 100%;
  }
}
