:root{
  --bg:#f5f7fb;
  --bg-soft:#eef2f8;
  --card:#ffffff;
  --card-2:#f9fbff;
  --line:#e6ebf3;
  --line-2:#dbe3ef;
  --text:#1d2433;
  --muted:#7d8aa2;
  --primary:#5b5ce6;
  --primary-2:#7a6bff;
  --green:#20b26b;
  --orange:#d9891b;
  --red:#e14d67;
  --blue:#4470de;
  --cyan:#10b8d8;
  --shadow:0 18px 40px rgba(24,39,75,.08);
  --radius:22px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(91,92,230,.08), transparent 18%),
    linear-gradient(180deg,#f8faff 0,#f4f7fb 100%);
  min-height:100vh;
}
a{text-decoration:none;color:inherit}
.container{width:min(1360px,94%);margin:auto}
.nav{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.88);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
}
.nav .inner{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:16px 0;
}
.brand{
  font-size:24px;font-weight:950;letter-spacing:-.4px;
  color:#161d2d;
}
.menu{display:flex;gap:10px;flex-wrap:wrap}
.btn{
  border:0;border-radius:16px;padding:12px 18px;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:900;color:#fff;background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 12px 26px rgba(91,92,230,.18)
}
.btn.dark{background:#eef2f8;color:#334155;border:1px solid var(--line);box-shadow:none}
.btn.green{background:var(--green);color:#fff}
.btn.red{background:var(--red);color:#fff}
.btn.orange{background:var(--orange);color:#fff}
.btn.cyan{background:var(--cyan);color:#fff}
.btn.ghost{background:#fff;color:#374151;border:1px solid var(--line);box-shadow:none}
.small-btn{padding:9px 12px;border-radius:12px;font-size:12px}
.hero{padding:28px 0 40px}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.col-3{grid-column:span 3}.col-4{grid-column:span 4}.col-5{grid-column:span 5}.col-6{grid-column:span 6}.col-7{grid-column:span 7}.col-8{grid-column:span 8}.col-9{grid-column:span 9}.col-12{grid-column:span 12}
.card{
  background:linear-gradient(180deg,var(--card),var(--card-2));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.card-flat{
  background:#fff;border:1px solid var(--line);border-radius:18px;padding:16px;
}
h1,h2,h3{margin:0 0 12px;letter-spacing:-.6px;color:#1a2233}
h1{font-size:42px;line-height:1.05}
p{margin:0 0 12px}
.muted{color:var(--muted)}
.form{display:grid;gap:14px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
input,select,textarea{
  width:100%;padding:14px 15px;border-radius:15px;
  background:#fff;color:#243047;border:1px solid var(--line-2);outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:#a2b1ff; box-shadow:0 0 0 3px rgba(91,92,230,.10);
}
textarea{min-height:120px}
.help{font-size:13px;color:var(--muted);line-height:1.6}
.alert{
  padding:14px 16px;border-radius:18px;margin:0 0 16px;background:#f4f7fd;border:1px solid var(--line)
}
.alert.error{background:#fff1f4;border-color:#ffdbe3;color:#d64b66}
.alert.success{background:#eefbf4;border-color:#d8f2e4;color:#16975d}
.badge{display:inline-flex;align-items:center;padding:8px 11px;border-radius:999px;font-size:12px;font-weight:900}
.badge.ok{background:#ebfbf3;color:#14995d}.badge.wait{background:#fff7ea;color:#cc820c}.badge.no{background:#fff0f2;color:#e14d67}
.stat{font-size:42px;font-weight:950;color:#181f2e}
.footer{padding:28px 0 34px;text-align:center;color:var(--muted)}
.actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}
.topline{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.hr{height:1px;background:#edf1f7;margin:18px 0}
.preview-wrap{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.preview-avatar{width:96px;height:96px;border-radius:18px;object-fit:cover;background:#eef2f8;border:1px solid var(--line)}
.upload-note{font-size:13px;color:var(--muted)}

.hero-banner{
  background:
    radial-gradient(circle at top right, rgba(91,92,230,.10), transparent 26%),
    linear-gradient(180deg,#ffffff,#f8fbff);
}
.kpi{
  background:#fff;border:1px solid var(--line);border-radius:22px;padding:20px;box-shadow:var(--shadow)
}
.kpi .label{font-size:12px;color:#94a2b8;text-transform:uppercase;font-weight:800;letter-spacing:.08em}
.kpi .value{font-size:40px;font-weight:950;color:#111827;margin-top:8px}

/* Professional doctor cards */
.doctor-card{
  position:relative;overflow:hidden;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow)
}
.doctor-cover{
  position:absolute;inset:0 0 auto 0;height:120px;
  background:linear-gradient(135deg,#eef2ff,#edf8ff 50%,#ffffff);
  pointer-events:none;
}
.doctor-body{position:relative;z-index:1}
.doctor-top{display:flex;align-items:flex-start;gap:14px;margin-bottom:14px}
.doctor-avatar{
  width:88px;height:88px;border-radius:24px;object-fit:cover;
  border:3px solid #fff;background:#eef2f8;box-shadow:0 12px 24px rgba(24,39,75,.10)
}
.doctor-name{font-size:28px;font-weight:950;line-height:1.08;margin:3px 0 7px;color:#182131}
.doctor-meta{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  display:inline-flex;align-items:center;gap:6px;padding:8px 11px;border-radius:999px;
  background:#f4f7fb;border:1px solid var(--line);color:#4f5d75;font-size:12px;font-weight:800
}
.instagram-link{
  display:inline-flex;align-items:center;gap:8px;padding:10px 13px;border-radius:14px;
  background:linear-gradient(135deg,#7c3aed,#db2777,#fb923c);color:#fff;font-size:13px;font-weight:900
}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px}
.info-box{background:#fafcff;border:1px solid var(--line);border-radius:16px;padding:12px}
.info-label{font-size:11px;text-transform:uppercase;color:#94a2b8;margin-bottom:5px;font-weight:800}
.info-value{font-size:14px;line-height:1.45;color:#1f2937;word-break:break-word}

/* dashboard */
.dash-body{background:var(--bg);color:var(--text)}
.dash-wrap{display:grid;grid-template-columns:280px 1fr;min-height:100vh}
.dash-sidebar{background:#fff;border-right:1px solid var(--line);padding:18px 16px;display:flex;flex-direction:column;gap:18px}
.dash-main{min-width:0;display:flex;flex-direction:column}
.dash-logo{display:flex;align-items:center;gap:12px;padding:10px 12px}
.dash-logo-mark{width:42px;height:42px;border-radius:14px;background:linear-gradient(135deg,var(--primary),var(--primary-2));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:1000;box-shadow:0 12px 24px rgba(91,92,230,.22)}
.dash-logo-title{font-size:24px;font-weight:900;color:#151b28;letter-spacing:-.5px}
.dash-small-title{padding:0 12px;font-size:11px;font-weight:800;color:#9da8bc;text-transform:uppercase;letter-spacing:.12em;margin-top:6px}
.dash-nav{display:grid;gap:6px}
.dash-link{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 14px;border-radius:14px;color:#445066;font-weight:700}
.dash-link:hover,.dash-link.active{background:#f3f5fb;color:#20283a;box-shadow:inset 0 0 0 1px #e6eaf1}
.dash-topbar{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:18px 24px;border-bottom:1px solid var(--line);background:#fff;position:sticky;top:0;z-index:40}
.dash-page-title{font-size:18px;font-weight:900;color:#1a2233}
.dash-top-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.dash-search{display:flex;align-items:center;gap:8px;padding:11px 13px;background:#f4f6fb;border:1px solid var(--line);border-radius:14px;color:#71819a;min-width:250px}
.dash-search input{border:0;background:transparent;padding:0;color:#334;outline:none;min-width:0}
.dash-content{padding:24px}
.dash-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.dash-col-3{grid-column:span 3}.dash-col-4{grid-column:span 4}.dash-col-5{grid-column:span 5}.dash-col-6{grid-column:span 6}.dash-col-7{grid-column:span 7}.dash-col-8{grid-column:span 8}.dash-col-12{grid-column:span 12}
.panel{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:0 16px 32px rgba(24,39,75,.06)}
.metric-card{background:#fff;border:1px solid var(--line);border-radius:20px;padding:20px;display:flex;align-items:center;justify-content:space-between;gap:16px;box-shadow:0 14px 28px rgba(24,39,75,.05)}
.metric-label{font-size:12px;font-weight:800;letter-spacing:.1em;color:#9aa6ba;text-transform:uppercase;margin-bottom:8px}
.metric-value{font-size:42px;font-weight:950;color:#181f2e;letter-spacing:-1px}
.metric-note{font-size:13px;color:#81a58f;font-weight:800}
.metric-icon{width:52px;height:52px;border-radius:16px;display:flex;align-items:center;justify-content:center}
.metric-icon svg{width:24px;height:24px}
.metric-icon.blue{background:#eef2ff;color:#5a67ff}.metric-icon.green{background:#ecfbf2;color:#16a366}.metric-icon.orange{background:#fff6ea;color:#d98211}.metric-icon.purple{background:#f5edff;color:#8247ff}
.dash-table{width:100%;border-collapse:separate;border-spacing:0}
.dash-table th{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:#95a3b8;padding:14px 12px;border-bottom:1px solid #eef1f6;text-align:left}
.dash-table td{padding:14px 12px;border-bottom:1px solid #f0f2f7;color:#253047;vertical-align:middle}
.dash-table tr:hover td{background:#fafbfe}
.tag{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;font-size:12px;font-weight:800}
.tag.soft{background:#f4f6fb;color:#506079}
.tag.green{background:#ebfbf3;color:#14995d}.tag.orange{background:#fff6e8;color:#d17c00}.tag.red{background:#ffeef1;color:#e14d67}.tag.blue{background:#eef4ff;color:#4470de}
.quick-list{display:grid;gap:10px}
.quick-item{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;border-radius:16px;font-weight:800}
.quick-item.orange{background:#fff7ea;color:#bb7a07}.quick-item.red{background:#fff0f2;color:#de4967}.quick-item.blue{background:#eef4ff;color:#4470de}.quick-item.green{background:#ecfbf2;color:#16a366}
.activity-item{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-bottom:1px solid #f0f2f7}.activity-item:last-child{border-bottom:0}
.activity-dot{width:36px;height:36px;border-radius:12px;display:flex;align-items:center;justify-content:center}
.activity-dot svg{width:18px;height:18px}
.activity-dot.green{background:#ecfbf2;color:#16a366}.activity-dot.blue{background:#eef4ff;color:#4470de}.activity-dot.purple{background:#f5edff;color:#8247ff}
.light-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:14px;background:var(--primary);color:#fff;font-weight:800;box-shadow:0 12px 24px rgba(92,94,240,.16)}
.success-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:14px;background:#22c779;color:#fff;font-weight:800}
.outline-btn{display:inline-flex;align-items:center;justify-content:center;padding:11px 15px;border-radius:14px;border:1px solid var(--line);background:#fff;color:#34425a;font-weight:800}
.slim-form{display:grid;gap:14px}.slim-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.slim-form input,.slim-form textarea,.slim-form select{background:#f6f8fc;color:#253047;border:1px solid var(--line);border-radius:14px;padding:14px 15px}
.slim-form input:focus,.slim-form textarea:focus,.slim-form select:focus{box-shadow:0 0 0 3px rgba(92,94,240,.12);border-color:#a2b1ff}
.side-profile{display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:16px;background:#f4f6fb}
.side-profile img{width:54px;height:54px;border-radius:16px;object-fit:cover;background:#dce4ef}
.kv-mini{display:grid;gap:10px}.kv-mini .item{padding:14px;border-radius:16px;background:#f7f9fd;border:1px solid #edf1f7}.kv-mini .k{font-size:11px;color:#94a2b8;text-transform:uppercase;font-weight:800;margin-bottom:5px}.kv-mini .v{font-size:14px;color:#1f2838;font-weight:700}
.auth-shell{min-height:100vh;background:#f3f5fb;display:grid;place-items:center;padding:26px}
.auth-card{width:min(1120px,100%);background:#fff;border:1px solid var(--line);border-radius:30px;overflow:hidden;box-shadow:0 30px 60px rgba(24,39,75,.08);display:grid;grid-template-columns:420px 1fr}
.auth-aside{padding:34px;background:linear-gradient(180deg,#5c5ef0,#6a7cff 60%,#8f6bff);color:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:680px}
.auth-brand{font-size:30px;font-weight:950;letter-spacing:-.8px}
.auth-copy h1{font-size:42px;line-height:1.05;margin:0 0 12px}.auth-copy p{color:rgba(255,255,255,.82);line-height:1.7}
.auth-bullets{display:grid;gap:12px}.auth-bullet{padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.12);backdrop-filter:blur(10px);font-weight:700}
.auth-main{padding:34px 38px;display:flex;flex-direction:column;justify-content:center}
.auth-topline{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:18px}
.auth-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:18px}
.auth-tab{padding:11px 14px;border-radius:14px;background:#f4f6fb;border:1px solid var(--line);color:#546176;font-weight:800;cursor:pointer}
.auth-tab.active{background:#5c5ef0;color:#fff;border-color:#5c5ef0;box-shadow:0 10px 22px rgba(92,94,240,.18)}
.auth-pane{display:none}.auth-pane.active{display:block}
.auth-title{font-size:34px;font-weight:950;color:#1c2333;margin-bottom:8px}
.auth-note{color:#7f8ca3;margin-bottom:22px}
.auth-box{padding:18px;border-radius:18px;background:#f7f8fd;border:1px solid #eaedf5}
.auth-box strong{color:#1e2740}
.file-note{font-size:12px;color:#8ea0b8}
.dashboard-alert{padding:14px 16px;border-radius:16px;font-weight:700;border:1px solid #ebeff6;background:#f8f9fd;color:#4b566b}
.dashboard-alert.success{background:#eefbf4;color:#17985d;border-color:#d9f2e4}
.dashboard-alert.error{background:#fff1f4;color:#dd4f68;border-color:#ffdbe3}
.status-chip{display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border-radius:999px;background:#f8f9fd;border:1px solid #ebeff6;font-weight:800;color:#465368}
.filter-chips{display:flex;gap:8px;flex-wrap:wrap}
.filter-chip{padding:9px 12px;border-radius:999px;background:#f3f5fb;border:1px solid var(--line);font-size:12px;font-weight:800;color:#526178;cursor:pointer}
.filter-chip.active{background:#eef2ff;border-color:#cfd6ff;color:#4d58db}
.pagination{display:flex;gap:8px;flex-wrap:wrap;align-items:center;justify-content:flex-end;margin-top:16px}
.page-btn{min-width:40px;height:40px;border-radius:12px;border:1px solid var(--line);background:#fff;color:#445066;font-weight:800;display:inline-flex;align-items:center;justify-content:center;cursor:pointer}
.page-btn.active{background:var(--primary);color:#fff;border-color:var(--primary)}
.modal-overlay{position:fixed;inset:0;background:rgba(19,27,43,.5);z-index:99999;padding:20px;display:none}
.modal-overlay.show{display:flex;align-items:center;justify-content:center}
.modal-box{width:min(900px,96vw);max-height:88vh;overflow:auto;border-radius:24px;background:#fff;border:1px solid var(--line);padding:24px;box-shadow:0 30px 80px rgba(24,39,75,.18)}
.modal-title{font-size:28px;font-weight:950;color:#1c2435;margin-bottom:8px}
.kvkk-text{white-space:pre-wrap;line-height:1.7;color:#334155;background:#f8faff;border:1px solid var(--line);padding:18px;border-radius:18px}
.modal-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:16px}

/* map */
.map-layout{display:grid;grid-template-columns:320px 1fr;gap:18px}
.map-list{display:grid;gap:12px;max-height:720px;overflow:auto}
.map-item{background:#fff;border:1px solid var(--line);border-radius:16px;padding:15px;cursor:pointer}
.map-item:hover,.map-item.active{border-color:#cfd6ff;background:#f8faff}
.osm-frame{width:100%;height:720px;border:0;border-radius:20px;background:#eef2f8}
.pin-legend{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.legend-item{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;background:#f8faff;border:1px solid var(--line);font-size:12px;font-weight:800;color:#526178}
.legend-dot{width:10px;height:10px;border-radius:50%}
.map-toolbar{display:grid;gap:12px;margin-bottom:14px}
.branch-grid{display:flex;gap:8px;flex-wrap:wrap}
.branch-pill{padding:8px 11px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:12px;font-weight:800;color:#526178;cursor:pointer}
.branch-pill.active{background:#eef2ff;border-color:#cfd6ff;color:#4d58db}
.map-note{font-size:12px;color:#8da0b8}
@media(max-width:1100px){.map-layout{grid-template-columns:1fr}.osm-frame{height:560px}.auth-card{grid-template-columns:1fr}.auth-aside{min-height:auto}.dash-wrap{grid-template-columns:1fr}.dash-sidebar{display:none}}
@media(max-width:760px){.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9{grid-column:span 12}.row,.info-grid,.slim-row{grid-template-columns:1fr}.nav .inner{flex-direction:column;align-items:flex-start}.dash-topbar{padding:16px}.dash-content{padding:16px}.dash-col-3,.dash-col-4,.dash-col-5,.dash-col-6,.dash-col-7,.dash-col-8{grid-column:span 12}.auth-main{padding:24px}h1{font-size:34px}}


/* v14 refinements */
.register-hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
}
.register-side{
  display:grid;
  gap:18px;
}
.register-section-title{
  font-size:12px;
  font-weight:900;
  color:#8fa0b7;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:2px;
}
.register-drop{
  display:grid;
  gap:10px;
  padding:16px;
  border:1px dashed #cfd8e6;
  border-radius:18px;
  background:#fbfcff;
}
.register-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.register-summary{
  display:grid;
  gap:12px;
}
.register-summary-card{
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.register-summary-card h3{
  font-size:18px;
  margin-bottom:8px;
}
.kvkk-inline{
  display:grid;
  gap:10px;
  padding:16px;
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:18px;
}
.subtle{
  font-size:12px;
  color:#8fa0b7;
}
.icon-badge{
  width:42px;
  height:42px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eef2ff;
  color:#5b5ce6;
}
.icon-badge svg{
  width:20px;
  height:20px;
}
.hero-points{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.hero-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid var(--line);
}
.hero-point b{
  display:block;
  margin-bottom:2px;
}
.file-input-wrap{
  display:grid;
  gap:8px;
}
.file-input-wrap input[type="file"]{
  background:#fff;
}
.map-main-card{
  display:grid;
  gap:14px;
}
.map-frame-shell{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:#eef2f8;
}
.map-detail-card{
  background:#fbfcff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.map-detail-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.map-detail-avatar{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:18px;
  background:#e5ebf5;
  border:1px solid var(--line);
}
.map-list-item-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.branch-color-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  display:inline-block;
}
.map-empty-state{
  display:grid;
  place-items:center;
  text-align:center;
  min-height:720px;
  color:#7d8aa2;
}
@media (max-width:1100px){
  .register-hero{
    grid-template-columns:1fr;
  }
}


/* v15 cleanup */
.register-layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:20px;
  align-items:start;
}
.register-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.register-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.register-intro{
  color:var(--muted);
  max-width:760px;
}
.form-section{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid #edf1f7;
}
.form-section:first-of-type{
  margin-top:0;
  padding-top:0;
  border-top:0;
}
.form-title{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:900;
  color:#91a0b5;
  margin-bottom:10px;
}
.profile-uploader{
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px;
  border:1px solid var(--line);
  background:#fafcff;
  border-radius:18px;
}
.profile-uploader .preview-avatar{
  width:84px;
  height:84px;
}
.file-inline{
  display:grid;
  gap:8px;
  flex:1;
}
.file-inline input[type="file"]{
  background:#fff;
}
.compact-note{
  font-size:12px;
  color:#8da0b8;
}
.aside-stack{
  display:grid;
  gap:18px;
}
.info-tile{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fafcff;
}
.info-tile .icon-badge{
  flex:0 0 auto;
}
.info-tile b{
  display:block;
  margin-bottom:3px;
}
.kvkk-box-clean{
  display:grid;
  gap:10px;
  padding:16px;
  border:1px solid var(--line);
  background:#fafcff;
  border-radius:18px;
}
.submit-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.map-master{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:18px;
  align-items:start;
}
.map-side{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow);
}
.map-main{
  display:grid;
  gap:16px;
}
.map-canvas-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:14px;
  box-shadow:var(--shadow);
}
.map-detail-clean{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}
.map-detail-clean .doctor-top{
  margin-bottom:10px;
}
.map-detail-clean .doctor-avatar{
  width:72px;
  height:72px;
  border-radius:20px;
}
.map-detail-clean .doctor-name{
  font-size:24px;
}
.map-detail-clean .info-grid{
  margin-top:10px;
}
.map-list{
  max-height:700px;
}
.map-frame-shell .osm-frame{
  height:660px;
}
@media (max-width:1100px){
  .register-layout,.map-master{
    grid-template-columns:1fr;
  }
  .map-frame-shell .osm-frame{
    height:520px;
  }
}

.checkbox-line{display:flex;align-items:flex-start;gap:10px;padding:12px 14px;border-radius:14px;background:#f7f9fd;border:1px solid var(--line);font-weight:700;color:#314056}
.checkbox-line input{margin-top:3px}
.small-btn{padding:9px 12px !important;border-radius:12px !important;font-size:12px}
.topline{display:flex;justify-content:space-between;gap:16px;align-items:center;flex-wrap:wrap}


/* refined admin ui */
.eyebrow{font-size:12px;font-weight:900;letter-spacing:.16em;color:#7b88a1;text-transform:uppercase;margin-bottom:10px}
.metric-note.neutral{color:#7d8aa2}.metric-note.warm{color:#d9891b}.metric-note.danger{color:#d34f67}
.emphasis-warm{background:linear-gradient(180deg,#fffaf2,#fff)}
.compact-filter-grid{display:grid;grid-template-columns:2fr repeat(4,1fr) auto;gap:12px;align-items:end}
.bulk-toolbar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;background:#f8faff;border:1px solid var(--line);padding:12px 14px;border-radius:18px;margin-bottom:14px}
.bulk-toolbar select,.bulk-toolbar input{margin:0}
.doctor-list-cards{display:grid;gap:14px}
.doctor-row-card{border:1px solid var(--line);border-radius:22px;padding:18px;background:linear-gradient(180deg,#fff,#fbfcff);box-shadow:0 12px 28px rgba(24,39,75,.05)}
.doctor-row-main{display:flex;gap:14px;align-items:flex-start;justify-content:space-between}
.doctor-row-check{padding-top:6px}
.doctor-row-summary{flex:1;min-width:0}
.doctor-row-title{font-size:22px;font-weight:950;color:#1a2233;margin-bottom:4px}
.doctor-row-title a{color:inherit}
.doctor-row-subtitle{color:#71819a;margin-bottom:10px}
.doctor-row-meta{display:flex;gap:8px;flex-wrap:wrap}
.doctor-row-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:16px}
.doctor-row-info-grid > div{background:#f8faff;border:1px solid #edf1f7;border-radius:16px;padding:12px}
.mini-label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:#99a5b9;font-weight:800;margin-bottom:6px}
.doctor-row-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.empty-state{padding:26px;border:1px dashed var(--line-2);border-radius:18px;text-align:center;color:var(--muted);background:#fbfcff}
.stack-list{display:grid;gap:10px}
.focus-item{display:flex;justify-content:space-between;gap:12px;padding:14px 16px;border:1px solid var(--line);border-radius:16px;background:#fbfcff}
.focus-item:hover{background:#f6f9ff}
.mail-summary-grid{display:grid;gap:10px}
.summary-chip{padding:14px 16px;border-radius:16px;font-weight:800;border:1px solid var(--line);display:flex;justify-content:space-between}
.summary-chip.success{background:#eefbf4;color:#16975d;border-color:#d8f2e4}
.summary-chip.neutral{background:#f5f7fb;color:#4a5870}
.summary-chip.danger{background:#fff1f4;color:#d64b66;border-color:#ffdbe3}
.admin-form-sections{display:grid;gap:16px}
.form-section-card{border:1px solid var(--line);border-radius:20px;padding:18px;background:#fbfcff}
.section-title{font-size:14px;font-weight:900;letter-spacing:.04em;color:#1f2a3d;margin-bottom:14px}
.helper-list{margin:0;padding-left:18px;color:#5d6c84;display:grid;gap:10px}
.sticky-panel{position:sticky;top:96px}
.dash-link small{color:#9aa7ba;font-size:12px;font-weight:700}
.dash-link span{display:block}
@media (max-width: 1200px){.compact-filter-grid{grid-template-columns:1fr 1fr 1fr}.doctor-row-info-grid{grid-template-columns:1fr}.dash-wrap{grid-template-columns:1fr}.dash-sidebar{display:none}.sticky-panel{position:static}}
@media (max-width: 760px){.compact-filter-grid{grid-template-columns:1fr}.doctor-row-main{flex-direction:column}.doctor-row-actions{flex-direction:column}.doctor-row-actions form,.doctor-row-actions a{width:100%}.doctor-row-actions .small-btn{width:100%;justify-content:center}.metric-value{font-size:34px}}


.timeline-list{display:grid;gap:10px}.timeline-item{padding:14px;border:1px solid var(--line);border-radius:16px;background:#f8faff;color:#233048}.small{font-size:12px}.task-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 0;border-bottom:1px solid #eef1f6}.task-row:last-child{border-bottom:0}.doctor-row-info-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:16px 0}.doctor-row-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:18px;box-shadow:0 10px 24px rgba(24,39,75,.05);display:grid;gap:12px}.doctor-row-main{display:flex;gap:12px;align-items:flex-start}.doctor-row-summary{flex:1}.doctor-row-title{font-size:24px;font-weight:900;color:#1f2937}.doctor-row-subtitle{color:#6e7d93;margin-top:4px}.doctor-row-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}.doctor-row-actions{display:flex;gap:8px;flex-wrap:wrap}.doctor-list-cards{display:grid;gap:14px}.bulk-toolbar{display:grid;grid-template-columns:220px 1fr auto;gap:10px;margin-bottom:16px}.mini-label{display:block;font-size:11px;font-weight:900;color:#93a1b7;text-transform:uppercase;margin-bottom:6px}.stack-list{display:grid;gap:10px}.focus-item{display:flex;justify-content:space-between;gap:10px;padding:13px 14px;border:1px solid var(--line);border-radius:16px;background:#fafcff;color:#223}.mail-summary-grid{display:grid;gap:10px}.summary-chip{padding:14px 16px;border-radius:16px;font-weight:800;display:flex;justify-content:space-between}.summary-chip.success{background:#ecfbf2;color:#14995d}.summary-chip.neutral{background:#f4f6fb;color:#526178}.summary-chip.danger{background:#fff1f4;color:#dd4f68}.admin-hero{display:flex;justify-content:space-between;gap:20px;align-items:center}.topline{display:flex;justify-content:space-between;gap:18px;align-items:center}.eyebrow{font-size:12px;font-weight:900;letter-spacing:.12em;color:#8998ae}.empty-state{padding:22px;border:1px dashed #d8e0ee;border-radius:18px;text-align:center;color:#70819a;background:#fbfcff}.compact-filter-grid{grid-template-columns:2fr 1fr 1fr 1fr 1fr auto}.helper-list{display:grid;gap:8px;padding-left:18px}.helper-list li{color:#506079}.checkbox-line{display:flex;align-items:center;gap:10px}.form-section-card{padding:18px;border:1px solid var(--line);border-radius:18px;background:#fbfcff}.section-title{font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;color:#7c8ca5;margin-bottom:14px}@media(max-width:980px){.doctor-row-info-grid,.compact-filter-grid,.bulk-toolbar{grid-template-columns:1fr}.admin-hero,.topline,.task-row,.focus-item{flex-direction:column;align-items:flex-start}}


.field{display:grid;gap:6px}
.field-label{font-size:13px;font-weight:800;color:#526178;padding-left:2px}
.field-hint{font-size:12px;color:#8a97aa;margin-top:-2px}
