/* Doktor Yönetimi - Randevu formu */
.dy-form { --dy: #004071; --dy-bg: #f4f7f8; max-width: 720px; margin: 0 auto; font-size: 15px; }
.dy-steps { display: flex; gap: 4px; margin-bottom: 18px; flex-wrap: wrap; }
.dy-step { flex: 1; min-width: 110px; text-align: center; padding: 8px 6px; border-radius: 6px; background: var(--dy-bg); color: #777; font-size: 13px; font-weight: 600; }
.dy-step.is-active { background: var(--dy); color: #fff; }
.dy-step.is-done { background: #d6ebee; color: var(--dy); }
.dy-alert { background: #fde8e8; color: #b42318; border: 1px solid #f5c2c0; padding: 10px 14px; border-radius: 6px; margin-bottom: 14px; }
.dy-panel h4 { margin: 0 0 14px; }
.dy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.dy-choice { text-align: left; padding: 14px; border: 1px solid #dfe6e9; background: #fff; border-radius: 8px; cursor: pointer; transition: .15s; font-size: 14px; line-height: 1.35; }
.dy-choice:hover { border-color: var(--dy); box-shadow: 0 2px 10px rgba(10,124,138,.12); }
.dy-doctor { display: flex; align-items: center; gap: 10px; }
.dy-doctor img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.dy-back { background: none; border: none; color: var(--dy); cursor: pointer; padding: 0 0 12px; font-weight: 600; }
.dy-loading { padding: 20px; text-align: center; color: #777; }
.dy-summary { background: var(--dy-bg); padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; }
.dy-change { float: right; font-size: 13px; background: none; border: none; color: var(--dy); cursor: pointer; text-decoration: underline; font-weight: 600; padding: 0; }
.dy-sum-row { line-height: 1.6; }
.dy-fields .dy-row { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.dy-fields label { flex: 1; min-width: 180px; display: flex; flex-direction: column; font-size: 13px; font-weight: 600; gap: 4px; }
.dy-fields .dy-full { flex-basis: 100%; }

/* Slotlar — güne göre gruplu */
.dy-slots-wrap { margin-bottom: 18px; }
.dy-day { margin-bottom: 16px; }
.dy-day-head { font-weight: 700; color: var(--dy); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 2px solid var(--dy-bg); text-transform: capitalize; }
.dy-day-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 8px; }
/* Gün carousel navigasyonu (tek gün + sağ/sol ok) */
.dy-slot-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 14px; }
.dy-slot-day { font-weight: 700; color: var(--dy); min-width: 200px; text-align: center; text-transform: capitalize; }
.dy-slot-prev, .dy-slot-next { width: 38px; height: 38px; flex: none; border-radius: 50%; border: 1px solid #dfe6e9; background: #fff; color: var(--dy); font-size: 22px; line-height: 1; cursor: pointer; transition: .15s; }
.dy-slot-prev:hover, .dy-slot-next:hover { border-color: var(--dy); background: var(--dy); color: #fff; }
.dy-slot-prev:disabled, .dy-slot-next:disabled { opacity: .35; cursor: not-allowed; background: #fff; color: var(--dy); border-color: #dfe6e9; }
.dy-slot { padding: 9px; border: 1px solid #dfe6e9; background: #fff; border-radius: 6px; cursor: pointer; font-size: 13px; text-align: center; }
.dy-slot:hover { border-color: var(--dy); }
.dy-slot.is-sel { background: var(--dy); color: #fff; border-color: var(--dy); }
.dy-noslot { color: #777; padding: 12px; background: var(--dy-bg); border-radius: 6px; }
.dy-submit { width: 100%; padding: 13px; background: var(--dy); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; }
.dy-submit:disabled { opacity: .5; cursor: not-allowed; }
.dy-success { text-align: center; padding: 30px 20px; }
.dy-success h3 { font-size: 48px; color: #1a7f37; margin: 0; }
