/* Doktor Yönetimi - Doktor listesi */
.dy-list { --dy: #0094d9; --dy-dark: #004071; }
.dy-list-filters { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.dy-list-filters select, .dy-list-filters input { flex: 1; min-width: 220px; border: 1px solid #e2e8ee; border-radius: 8px; background: #fff; font-size: 15px; color: #333; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.dy-list-filters select:focus, .dy-list-filters input:focus { outline: none; border-color: var(--dy); }

.dy-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .dy-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dy-list-grid { grid-template-columns: 1fr; } }

.dy-doc-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.07); display: flex; flex-direction: column; border: 1px solid transparent; transition: transform .15s, box-shadow .15s, border-color .15s; }
.dy-doc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.12); border-color: #0c78ca; }
.dy-doc-photo { aspect-ratio: 1 / 1; background: #eef4fb url('../doktor-arkaplani.webp') center top / cover no-repeat; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.dy-doc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.dy-doc-noimg { font-size: 120px; color: #b8cde0; align-self: center; width: auto; height: auto; }
.dy-doc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1 1 auto; }
.dy-doc-branch { color: var(--dy); font-size: 12px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; }
.dy-doc-name {font-size: 1.1rem; font-weight: 800; color: #004071!important; margin: 0; padding-top: 0!important;}
.dy-doc-hosp { color: #6b7a89; font-size: 13px; margin-bottom: 14px; }
.dy-doc-actions { display: flex; gap: 10px; margin-top: auto; }
.dy-doc-actions > * { flex: 1; text-align: center; padding: 8px 10px; border-radius: 26px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--dy); transition: .15s; line-height: 1.4; }
.dy-doc-profile { color: var(--dy); background: #fff; text-decoration: none; }
.dy-doc-profile:hover { background: #eef4fb; }
.dy-doc-book { color: #fff; border-color: #0c78ca; background: linear-gradient(135deg,#0c78ca 0%,#38cbef 100%); }
.dy-doc-book:hover { filter: brightness(.94); }
.dy-doc-branch i, .dy-doc-hosp i { margin-right: 5px; }
.dy-doc-hosp i { color: #0094d9; }
.dy-doc-branch { min-height: 16px; }
.dy-doc-hosp { min-height: 18px; }

.dy-list-status { text-align: center; color: #6b7a89; padding: 22px; font-size: 14px; }
.dy-list-sentinel { height: 1px; }
