/* Kanal Tuzla — Admin Panel */
:root {
  --purple: #682B68;
  --purple-deep: #4f1f4f;
  --orange: #E16D51;
  --orange-deep: #c75636;
  --blue: #1575B3;
  --blue-deep: #0f5e92;
  --green: #16a34a;
  --red: #dc2626;

  --bg: #f5f5f8;
  --surface: #ffffff;
  --ink: #0f0f14;
  --ink-soft: #29292f;
  --muted: #6b6b72;
  --muted-2: #9a9aa1;
  --line: #e7e7eb;
  --line-strong: #d4d4d9;

  --side-bg: #1a0e1a;
  --side-text: rgba(255,255,255,.7);
  --side-text-strong: #fff;
  --side-active-bg: rgba(225,109,81,.12);
  --side-active-text: #fff;
  --side-active-bar: var(--orange);

  --shadow-sm: 0 1px 2px rgba(15,15,20,.06);
  --shadow-md: 0 4px 16px rgba(15,15,20,.08);
  --radius: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.5;
}
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; }

/* ===== LOGIN ===== */
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
}
.login-left {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: #fff;
  padding: 64px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.login-left::before {
  content: ""; position: absolute;
  right: -120px; top: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}
.login-left::after {
  content: ""; position: absolute;
  left: -100px; bottom: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}
.login-brand { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.login-brand .lb-mark { width: 56px; height: 56px; flex: none; }
.login-brand .lb-text { line-height: 1; }
.login-brand .lb-title { font-size: 24px; font-weight: 800; }
.login-brand .lb-sub { font-size: 10px; letter-spacing: 0.24em; margin-top: 6px; color: rgba(255,255,255,.6); }
.login-tag {
  position: relative; z-index: 2;
  font-size: 36px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; max-width: 440px;
  text-wrap: balance;
}
.login-tag b { color: var(--orange); }
.login-bottom { position: relative; z-index: 2; font-size: 13px; color: rgba(255,255,255,.6); }

.login-right { display: grid; place-items: center; padding: 48px; }
.login-card { width: 100%; max-width: 380px; }
.login-card h1 { font-size: 28px; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.02em; }
.login-card .sub { color: var(--muted); font-size: 14px; margin: 0 0 32px; }

/* ===== SHELL ===== */
.shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }

/* Sidebar */
.side {
  background: var(--side-bg);
  color: var(--side-text);
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column;
}
.side-brand {
  padding: 20px 22px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.side-brand svg { width: 32px; height: 32px; flex: none; }
.side-brand .lb-title { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.1; }
.side-brand .lb-sub { font-size: 9px; letter-spacing: 0.18em; color: rgba(255,255,255,.5); margin-top: 3px; }

.side-section {
  padding: 18px 18px 8px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.side-nav { padding: 0 10px; flex: 1; overflow-y: auto; }
.side-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 14px; border-radius: 6px;
  font-size: 13.5px; font-weight: 600;
  color: var(--side-text);
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
}
.side-nav a:hover { color: #fff; background: rgba(255,255,255,.04); }
.side-nav a.active { color: var(--side-active-text); background: var(--side-active-bg); }
.side-nav a.active::before {
  content: ""; position: absolute; left: -10px; top: 8px; bottom: 8px;
  width: 3px; border-radius: 0 3px 3px 0; background: var(--side-active-bar);
}
.side-nav a .ic { color: rgba(255,255,255,.5); transition: color .15s; }
.side-nav a:hover .ic, .side-nav a.active .ic { color: var(--orange); }
.side-nav .count {
  margin-left: auto;
  font-size: 11px; font-weight: 800;
  background: rgba(255,255,255,.08);
  padding: 2px 7px; border-radius: 999px;
}

.side-user {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 10px;
}
.side-user .av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
  flex: none;
}
.side-user .uname { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.1; }
.side-user .urole { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }
.side-user .logout { margin-left: auto; color: rgba(255,255,255,.5); }
.side-user .logout:hover { color: var(--orange); }

/* Main area */
.main { display: flex; flex-direction: column; min-width: 0; }

/* Topbar */
.top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 28px;
  display: flex; align-items: center; gap: 24px;
}
.top .search {
  flex: 1; max-width: 420px;
  position: relative;
}
.top .search input {
  width: 100%; height: 38px;
  padding: 0 12px 0 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  background: var(--bg);
}
.top .search input:focus { outline: none; border-color: var(--purple); background: #fff; }
.top .search svg { position: absolute; left: 12px; top: 10px; color: var(--muted); }
.top .top-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.top-btn {
  height: 38px; padding: 0 14px;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 6px; font-size: 13px; font-weight: 700;
  border: 1px solid var(--line);
  color: var(--ink); background: #fff;
}
.top-btn:hover { border-color: var(--purple); color: var(--purple); }
.top-btn.primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.top-btn.primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }

/* Content */
.content { padding: 28px; flex: 1; }
.page-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 14px;
}
.page-head h1 { font-size: 22px; font-weight: 800; margin: 0; letter-spacing: -0.01em; }
.page-head p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.page-head .actions { display: flex; gap: 8px; }

/* Dashboard */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.stat .label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.stat .label .pill {
  background: rgba(22, 163, 74, .1); color: var(--green);
  padding: 2px 8px; border-radius: 4px; font-size: 11px;
}
.stat .label .pill.warn { background: rgba(225,109,81,.12); color: var(--orange); }
.stat .label .ic { width: 32px; height: 32px; border-radius: 6px; display: grid; place-items: center; }
.stat .v { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.stat .sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

.dash-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.panel .ph {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.panel .ph h3 { margin: 0; font-size: 14px; font-weight: 800; }
.panel .ph a { font-size: 12px; font-weight: 700; color: var(--purple); }
.panel .pb { padding: 8px 0; }

.chart {
  height: 220px;
  padding: 20px;
  display: flex; align-items: flex-end; gap: 8px;
}
.chart .bar {
  flex: 1; background: linear-gradient(180deg, var(--purple) 0%, var(--orange) 100%);
  border-radius: 3px 3px 0 0;
  min-height: 6px;
  position: relative;
}
.chart .bar::after {
  content: attr(data-day);
  position: absolute; bottom: -22px; left: 0; right: 0;
  text-align: center; font-size: 10px; color: var(--muted); font-weight: 700;
}

.act-list .act {
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 12px;
  font-size: 13px;
}
.act-list .act:last-child { border-bottom: 0; }
.act .av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  font-weight: 800; font-size: 11px;
  flex: none;
}
.act .ts { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Toolbar */
.toolbar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.toolbar select, .toolbar input[type="text"], .toolbar input[type="search"] {
  height: 36px; padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px; background: #fff;
  font-size: 13px;
  min-width: 160px;
}
.toolbar .filter-search-ad {
  flex: 1; min-width: 200px;
  position: relative;
}
.toolbar .filter-search-ad input {
  width: 100%; padding-left: 36px;
}
.toolbar .filter-search-ad svg {
  position: absolute; left: 12px; top: 10px; color: var(--muted);
}

/* Table */
.tbl-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
table.tbl { width: 100%; border-collapse: collapse; }
table.tbl th {
  background: var(--bg);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.tbl td {
  padding: 14px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl tr:hover { background: rgba(104,43,104,.025); }
table.tbl td.title b { font-weight: 700; display: block; margin-bottom: 2px; }
table.tbl td.title small { color: var(--muted); font-size: 11.5px; }
.thumb {
  width: 60px; height: 40px; border-radius: 4px;
  overflow: hidden; background: var(--bg);
  flex: none;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.badge {
  display: inline-block;
  padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--bg);
  color: var(--muted);
}
.badge.green { background: rgba(22,163,74,.1); color: var(--green); }
.badge.orange { background: rgba(225,109,81,.12); color: var(--orange); }
.badge.purple { background: rgba(104,43,104,.1); color: var(--purple); }
.badge.blue { background: rgba(21,117,179,.1); color: var(--blue); }
.badge.gray { background: var(--bg); color: var(--muted); }

.row-actions { display: flex; gap: 4px; }
.row-btn {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 6px;
  color: var(--muted);
}
.row-btn:hover { background: var(--bg); color: var(--ink); }
.row-btn.danger:hover { background: rgba(220,38,38,.1); color: var(--red); }

/* Pagination footer */
.tbl-foot {
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.tbl-foot .info { font-size: 12px; color: var(--muted); }
.tbl-foot .pager { display: flex; gap: 4px; }
.tbl-foot .pager button {
  min-width: 30px; height: 30px; border-radius: 4px;
  font-size: 12px; font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
}
.tbl-foot .pager button.active { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ===== FORMS (Add/Edit) ===== */
.form-shell { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fc-h {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.fc-h h3 { margin: 0; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--purple); }
.fc-b { padding: 20px; display: grid; gap: 16px; }
.fld { display: grid; gap: 6px; }
.fld label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted);
}
.fld label.req::after { content: " *"; color: var(--red); }
.fld input, .fld textarea, .fld select {
  height: 40px; padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px; background: #fff;
  font-size: 13.5px; color: var(--ink);
}
.fld textarea { height: auto; padding: 10px 12px; min-height: 96px; resize: vertical; line-height: 1.5; }
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--purple); }
.fld .help { font-size: 11px; color: var(--muted); }
.fld-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.editor {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.editor .ebar {
  display: flex; gap: 2px;
  padding: 6px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  flex-wrap: wrap;
}
.editor .ebar button {
  width: 30px; height: 30px;
  border-radius: 4px;
  font-size: 13px; font-weight: 700;
  color: var(--muted);
}
.editor .ebar button:hover { background: rgba(255,255,255,.7); color: var(--ink); }
.editor .ebar .sep { width: 1px; background: var(--line); margin: 4px 4px; }
.editor textarea {
  width: 100%; border: 0;
  padding: 16px 18px;
  font-size: 14px; line-height: 1.6;
  min-height: 240px;
  resize: vertical;
  font-family: 'Newsreader', Georgia, serif;
  background: #fff; color: var(--ink);
}
.editor textarea:focus { outline: none; }

.uploader {
  border: 2px dashed var(--line-strong);
  border-radius: 6px;
  padding: 28px;
  text-align: center;
  background: var(--bg);
  cursor: pointer;
  transition: border-color .15s;
}
.uploader:hover { border-color: var(--purple); }
.uploader .uic { color: var(--muted); margin-bottom: 8px; }
.uploader .up-t { font-size: 13.5px; font-weight: 700; }
.uploader .up-s { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.uploader .preview {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 6px; overflow: hidden;
  background: var(--bg);
}
.uploader .preview img { width: 100%; height: 100%; object-fit: cover; }

.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--bg);
  font-size: 12px; font-weight: 600;
}
.tag-pill .x { color: var(--muted); cursor: pointer; }
.tag-pill .x:hover { color: var(--red); }

.switch {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.switch input { display: none; }
.switch .s {
  width: 36px; height: 20px;
  background: var(--line-strong);
  border-radius: 999px;
  position: relative;
  transition: background .15s;
}
.switch .s::after {
  content: ""; position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff; border-radius: 50%;
  transition: transform .15s;
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.switch input:checked + .s { background: var(--green); }
.switch input:checked + .s::after { transform: translateX(16px); }

.status-pick {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.status-opt {
  flex: 1; min-width: 70px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  font-size: 12px; font-weight: 700;
  cursor: pointer;
}
.status-opt:hover { border-color: var(--purple); }
.status-opt.active { background: var(--purple); color: #fff; border-color: var(--purple); }

/* Mobile */
@media (max-width: 1024px) {
  .login { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .shell { grid-template-columns: 1fr; }
  .side { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .form-shell { grid-template-columns: 1fr; }
}

/* ===== NOTIFICATION DROPDOWN ===== */
.notify-badge {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--orange); color: #fff;
  font-size: 10.5px; font-weight: 800;
  border-radius: 999px;
  display: grid; place-items: center;
  border: 2px solid #fff;
}
.notify-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 360px; max-height: 480px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(15,15,20,.18);
  border: 1px solid var(--line);
  z-index: 100;
  display: flex; flex-direction: column;
  overflow: hidden;
}
/* hidden özniteliği display:flex tarafından ezilmesin diye açıkça gizle */
.notify-panel[hidden],
.notify-badge[hidden] { display: none !important; }
.notify-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.notify-head h3 { margin: 0; font-size: 14px; font-weight: 800; }
.notify-head button { font-size: 11px; font-weight: 700; color: var(--purple); cursor: pointer; }
.notify-list { flex: 1; overflow-y: auto; }
.notify-item {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  position: relative;
}
.notify-item:hover { background: var(--bg); }
.notify-item.unread { background: rgba(225,109,81,.04); }
.notify-item.unread::before {
  content: ""; position: absolute; left: 6px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.ni-ic {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center; font-size: 16px;
}
.ni-purple { background: rgba(104,43,104,.1); color: var(--purple); }
.ni-orange { background: rgba(225,109,81,.12); color: var(--orange); }
.ni-blue   { background: rgba(21,117,179,.1); color: var(--blue); }
.ni-green  { background: rgba(22,163,74,.1); color: var(--green); }
.ni-title { font-size: 13px; font-weight: 700; }
.ni-msg { font-size: 12px; color: var(--muted); margin: 2px 0; line-height: 1.4; }
.ni-time { font-size: 11px; color: var(--muted-2); }
.notify-empty, .notify-loading {
  padding: 40px 20px; text-align: center;
  color: var(--muted); font-size: 13px;
}
.notify-foot {
  padding: 12px; text-align: center;
  background: var(--bg);
  font-size: 12px; font-weight: 700;
  color: var(--purple);
  border-top: 1px solid var(--line);
}

/* ===== TAG INPUT ===== */
.tag-input { border: 1px solid var(--line); border-radius: 6px; padding: 8px 10px; background: #fff; min-height: 40px; }
.tag-input .tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.tag-input .tag-list:empty { display: none; }
.tag-input input { border: 0; outline: none; padding: 4px; font-size: 13.5px; width: 100%; background: transparent; }

/* ===== PERMISSION GRID (Roller sayfası için) ===== */
.perm-grid {
  display: grid; gap: 24px;
}
.perm-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.perm-group h4 {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 14px;
}
.perm-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.perm-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  padding: 6px 0;
}
.perm-row label { display: flex; align-items: center; gap: 10px; cursor: pointer; flex: 1; }
.perm-row input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.perm-row .perm-desc { font-size: 11.5px; color: var(--muted); margin-left: auto; }

/* ===== Görsel Yükleme Bileşeni (image-upload.js) ===== */
.img-upload { margin-top: 4px; }
.iu-drop {
  position: relative; border: 2px dashed var(--line); border-radius: 10px;
  background: #faf8f3; transition: .15s; overflow: hidden;
}
.iu-drop.iu-dragover { border-color: var(--purple); background: #f3eef6; }
.iu-empty { padding: 28px 16px; text-align: center; cursor: pointer; }
.iu-empty:hover { background: rgba(0,0,0,.02); }
.iu-ico { font-size: 28px; margin-bottom: 6px; }
.iu-text { font-size: 14px; color: var(--ink-soft, #555); }
.iu-pick { color: var(--purple); font-weight: 600; text-decoration: underline; }
.iu-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.iu-preview { position: relative; }
.iu-preview img { display: block; width: 100%; max-height: 240px; object-fit: contain; background: #fff; }
.iu-remove {
  position: absolute; top: 8px; right: 8px; width: 30px; height: 30px;
  border: 0; border-radius: 50%; background: rgba(20,20,25,.7); color: #fff;
  font-size: 14px; cursor: pointer; line-height: 1;
}
.iu-remove:hover { background: var(--red, #c0392b); }
.iu-progress { padding: 18px 16px; }
.iu-bar { height: 6px; background: var(--purple); border-radius: 99px; width: 0; transition: width .25s; }
.iu-status { display: block; font-size: 12px; color: var(--muted); margin-top: 8px; }
.iu-url-toggle { margin-top: 8px; }
.iu-url-link { font-size: 12px; color: var(--muted); text-decoration: underline; }
.iu-url-row { margin-top: 8px; }
.iu-url-row input { width: 100%; }
