:root {
  color-scheme: light;
  --bg: #f4f5f9;
  --surface: #ffffff;
  --surface-soft: #f8f9fc;
  --surface-strong: #eceef5;
  --ink: #171b2e;
  --ink-soft: #5d6478;
  --ink-faint: #8c93a6;
  --line: #dfe2eb;
  --primary: #6759e8;
  --primary-dark: #5043c7;
  --primary-soft: #eeecff;
  --teal: #238d82;
  --teal-soft: #e5f6f2;
  --green: #237a4b;
  --green-soft: #e5f5eb;
  --red: #a53a4a;
  --red-soft: #fbe9ec;
  --amber: #9a6818;
  --amber-soft: #fff4d8;
  --shadow-sm: 0 1px 2px rgba(23, 27, 46, .05), 0 3px 12px rgba(23, 27, 46, .04);
  --shadow-md: 0 10px 30px rgba(23, 27, 46, .12);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --sidebar: 250px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body { margin: 0; min-height: 100vh; background: var(--bg); color: var(--ink); }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.icon { width: 20px; height: 20px; flex: 0 0 auto; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 26px; height: 26px; }

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 15%, rgba(103, 89, 232, .17), transparent 32%),
    radial-gradient(circle at 85% 82%, rgba(35, 141, 130, .14), transparent 32%),
    #f4f5f9;
}

.login-card {
  width: min(100%, 430px);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(223, 226, 235, .9);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(23, 27, 46, .13);
  padding: 34px;
  backdrop-filter: blur(12px);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ink); color: white; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 27px; height: 27px; }
.brand-name { font-weight: 760; letter-spacing: -.02em; }
.brand-kicker { color: var(--ink-soft); font-size: 12px; margin-top: 1px; }
.login-card h1 { margin: 30px 0 8px; font-size: clamp(28px, 6vw, 38px); letter-spacing: -.04em; line-height: 1.05; }
.login-copy { color: var(--ink-soft); margin: 0 0 26px; line-height: 1.55; }

.form-stack { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label, .field-label { font-size: 13px; font-weight: 680; color: #353b50; }
.field-help { color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.input, .select, .textarea {
  width: 100%; border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  border-radius: 12px; min-height: 44px; padding: 10px 12px; outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(103, 89, 232, .14);
}
.input::placeholder, .textarea::placeholder { color: #9ba1b2; }
.input-with-icon { position: relative; }
.input-with-icon .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); pointer-events: none; }
.input-with-icon .input { padding-left: 40px; }

.btn {
  border: 0; border-radius: 11px; min-height: 42px; padding: 9px 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 680; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, background .16s ease, border-color .16s ease, opacity .16s ease;
}
.btn:hover:not(:disabled) { transform: translateY(-1px); }
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled { opacity: .52; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover:not(:disabled) { background: var(--primary-dark); }
.btn-secondary { background: var(--surface-strong); color: var(--ink); }
.btn-secondary:hover:not(:disabled) { background: #e4e7f0; }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-strong); color: var(--ink); }
.btn-success { background: var(--green); color: white; }
.btn-danger { background: var(--red); color: white; }
.btn-outline-danger { background: var(--surface); color: var(--red); border: 1px solid #edc6cd; }
.btn-sm { min-height: 34px; padding: 6px 10px; font-size: 13px; border-radius: 9px; }
.btn-block { width: 100%; }

.login-note { margin-top: 20px; display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.login-note .icon { margin-top: 1px; }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: var(--sidebar) minmax(0, 1fr); }
.sidebar {
  position: fixed; inset: 0 auto 0 0; width: var(--sidebar); z-index: 20;
  background: #171b2e; color: #f7f8ff; padding: 22px 16px;
  display: flex; flex-direction: column; gap: 24px;
}
.sidebar .brand { padding: 0 8px; }
.sidebar .brand-mark { background: linear-gradient(135deg, #7667f7, #45b6a8); }
.sidebar .brand-kicker { color: #aab0c6; }
.nav { display: grid; gap: 6px; }
.nav-button {
  width: 100%; min-height: 44px; border: 0; border-radius: 11px; padding: 10px 12px;
  color: #b9bfd2; background: transparent; display: flex; align-items: center; gap: 11px;
  text-align: left; font-weight: 620; cursor: pointer;
}
.nav-button:hover { background: rgba(255, 255, 255, .07); color: white; }
.nav-button.active { background: rgba(118, 103, 247, .22); color: white; }
.sidebar-spacer { flex: 1; }
.user-panel { border-top: 1px solid rgba(255, 255, 255, .1); padding: 16px 8px 0; }
.user-line { display: flex; align-items: center; gap: 10px; min-width: 0; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; background: #343a54; color: white;
  display: grid; place-items: center; font-weight: 760; flex: 0 0 auto;
}
.user-meta { min-width: 0; flex: 1; }
.user-name { font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-role { color: #9fa6bc; font-size: 12px; margin-top: 2px; }

.main { grid-column: 2; min-width: 0; }
.topbar {
  height: 72px; position: sticky; top: 0; z-index: 15;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 0 32px; background: rgba(244, 245, 249, .88); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 226, 235, .78);
}
.mobile-menu { display: none; }
.page-heading h1 { font-size: 21px; letter-spacing: -.025em; margin: 0; }
.page-heading p { margin: 3px 0 0; color: var(--ink-soft); font-size: 12px; }
.child-select-wrap { display: flex; align-items: center; gap: 9px; }
.child-select-wrap label { font-size: 12px; color: var(--ink-soft); font-weight: 650; }
.child-select { min-width: 170px; max-width: 250px; min-height: 38px; }

.content { padding: 28px 32px 50px; max-width: 1600px; margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-header h2 { margin: 0; font-size: 20px; letter-spacing: -.025em; }
.section-header p { margin: 5px 0 0; color: var(--ink-soft); font-size: 13px; }

.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.stat-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.stat-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; }
.stat-icon.purple { background: var(--primary-soft); color: var(--primary); }
.stat-icon.green { background: var(--green-soft); color: var(--green); }
.stat-icon.red { background: var(--red-soft); color: var(--red); }
.stat-icon.amber { background: var(--amber-soft); color: var(--amber); }
.stat-label { color: var(--ink-soft); font-size: 13px; }
.stat-value { font-size: 30px; font-weight: 780; letter-spacing: -.04em; margin-top: 10px; }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.panel-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.panel-header h2, .panel-header h3 { margin: 0; font-size: 16px; letter-spacing: -.015em; }
.panel-body { padding: 20px; }

.recent-list { display: grid; }
.recent-row { display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 20px; border-bottom: 1px solid var(--line); }
.recent-row:last-child { border-bottom: 0; }
.recent-poster { width: 46px; height: 64px; border-radius: 8px; object-fit: cover; background: var(--surface-strong); }
.recent-name { font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-meta { color: var(--ink-soft); font-size: 12px; margin-top: 4px; }

.badge { display: inline-flex; align-items: center; gap: 5px; min-height: 24px; border-radius: 999px; padding: 3px 8px; font-size: 11px; font-weight: 720; line-height: 1; }
.badge-neutral { background: var(--surface-strong); color: #4d5468; }
.badge-approved { background: var(--green-soft); color: var(--green); }
.badge-denied { background: var(--red-soft); color: var(--red); }
.badge-unreviewed { background: var(--amber-soft); color: var(--amber); }
.badge-primary { background: var(--primary-soft); color: var(--primary-dark); }

.library-toolbar { display: grid; gap: 14px; margin-bottom: 18px; }
.search-row { display: flex; gap: 10px; align-items: center; }
.search-row .input-with-icon { flex: 1; }
.filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-row .select { width: auto; min-width: 145px; min-height: 38px; padding: 7px 10px; }
.status-tabs { display: inline-flex; gap: 4px; background: var(--surface-strong); padding: 4px; border-radius: 12px; }
.status-tab { border: 0; background: transparent; border-radius: 9px; min-height: 32px; padding: 6px 10px; font-size: 12px; font-weight: 680; color: var(--ink-soft); cursor: pointer; }
.status-tab.active { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(23,27,46,.08); }
.results-line { display: flex; align-items: center; justify-content: space-between; color: var(--ink-soft); font-size: 13px; margin: 4px 0 12px; }

.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.media-card { position: relative; min-width: 0; }
.poster-wrap { position: relative; aspect-ratio: 2 / 3; border-radius: 15px; overflow: hidden; background: var(--surface-strong); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.poster { width: 100%; height: 100%; object-fit: cover; transition: transform .24s ease; }
.media-card:hover .poster { transform: scale(1.025); }
.poster-overlay { position: absolute; inset: auto 0 0; padding: 34px 10px 10px; background: linear-gradient(transparent, rgba(10, 12, 22, .78)); display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.card-select { position: absolute; top: 9px; left: 9px; z-index: 2; width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.94); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.card-select input { width: 16px; height: 16px; accent-color: var(--primary); }
.card-info { padding: 10px 2px 0; }
.card-title { font-weight: 720; letter-spacing: -.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-meta { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 12px; margin-top: 4px; overflow: hidden; }
.card-meta span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 9px; }
.card-actions .btn { min-height: 34px; padding: 6px 8px; font-size: 12px; }

.bulk-bar { position: fixed; left: calc(var(--sidebar) + 50%); bottom: 24px; transform: translateX(-50%); z-index: 30; background: #171b2e; color: white; border-radius: 15px; padding: 10px 12px 10px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); }
.bulk-count { font-size: 13px; font-weight: 680; margin-right: 2px; }
.bulk-bar .btn-secondary { background: rgba(255,255,255,.12); color: white; }
.bulk-bar .btn-secondary:hover { background: rgba(255,255,255,.18); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 30px; }
.page-number { min-width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; }
.page-number.active { background: var(--primary); color: white; border-color: var(--primary); }

.empty-state { text-align: center; padding: 54px 24px; color: var(--ink-soft); }
.empty-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin: 0 auto 14px; background: var(--surface-strong); color: var(--ink-soft); }
.empty-state h2, .empty-state h3 { color: var(--ink); margin: 0 0 7px; }
.empty-state p { margin: 0 auto 18px; max-width: 500px; line-height: 1.55; }

.skeleton { background: linear-gradient(90deg, #eceef3 25%, #f6f7fa 50%, #eceef3 75%); background-size: 200% 100%; animation: shimmer 1.25s infinite; border-radius: 10px; }
@keyframes shimmer { to { background-position: -200% 0; } }

.modal-backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(12, 14, 26, .58); display: grid; place-items: center; padding: 20px; backdrop-filter: blur(4px); }
.modal { width: min(960px, 100%); max-height: min(900px, calc(100vh - 40px)); overflow: auto; background: var(--surface); border-radius: 22px; box-shadow: 0 30px 100px rgba(8,10,20,.3); }
.modal-sm { width: min(560px, 100%); }
.modal-header { position: sticky; top: 0; z-index: 2; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.modal-header h2 { margin: 0; font-size: 18px; }
.icon-button { width: 38px; height: 38px; border: 0; background: var(--surface-strong); border-radius: 10px; display: grid; place-items: center; cursor: pointer; }
.detail-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 26px; padding: 24px; }
.detail-poster { width: 100%; border-radius: 15px; aspect-ratio: 2/3; object-fit: cover; background: var(--surface-strong); }
.detail-title { margin: 0; font-size: 28px; letter-spacing: -.035em; line-height: 1.1; }
.detail-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 10px 0 18px; }
.detail-overview { color: #484f63; line-height: 1.68; margin: 0 0 20px; white-space: pre-wrap; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.detail-section { margin-top: 22px; }
.detail-section h3 { margin: 0 0 10px; font-size: 14px; }
.review-box { border-top: 1px solid var(--line); padding: 22px 24px 26px; background: var(--surface-soft); }
.review-box h3 { margin: 0 0 14px; }
.guidance-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.guidance-grid .field label { font-size: 11px; }
.review-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin-top: 18px; flex-wrap: wrap; }

.admin-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); gap: 20px; }
.admin-stack { display: grid; gap: 20px; align-content: start; }
.status-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.status-line:last-child { border-bottom: 0; }
.status-label { color: var(--ink-soft); font-size: 13px; }
.status-value { font-weight: 680; text-align: right; }
.progress { height: 8px; border-radius: 999px; background: var(--surface-strong); overflow: hidden; }
.progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--teal)); border-radius: inherit; min-width: 4px; }

.checkbox-list { max-height: 220px; overflow: auto; border: 1px solid var(--line); border-radius: 12px; padding: 6px; background: var(--surface); }
.checkbox-row { display: flex; align-items: center; gap: 10px; padding: 9px; border-radius: 8px; cursor: pointer; }
.checkbox-row:hover { background: var(--surface-soft); }
.checkbox-row input { width: 17px; height: 17px; accent-color: var(--primary); }
.checkbox-copy { min-width: 0; }
.checkbox-name { font-size: 13px; font-weight: 650; }
.checkbox-detail { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }
.switch-row { display: flex; align-items: flex-start; gap: 10px; }
.switch-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); }

.profile-list { display: grid; gap: 12px; }
.profile-card { border: 1px solid var(--line); border-radius: 14px; padding: 15px; background: var(--surface); }
.profile-card.inactive { opacity: .68; }
.profile-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.profile-head h3 { margin: 0; font-size: 15px; }
.profile-tag { margin-top: 7px; display: inline-flex; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; color: var(--primary-dark); background: var(--primary-soft); border-radius: 7px; padding: 4px 7px; }
.profile-parents { color: var(--ink-soft); font-size: 12px; margin-top: 10px; line-height: 1.45; }
.profile-actions { display: flex; gap: 7px; margin-top: 13px; flex-wrap: wrap; }

.audit-list { display: grid; }
.audit-row { padding: 13px 0; border-bottom: 1px solid var(--line); }
.audit-row:last-child { border-bottom: 0; }
.audit-title { font-size: 13px; font-weight: 650; }
.audit-meta { color: var(--ink-soft); font-size: 11px; margin-top: 4px; }

.notice { border-radius: 12px; padding: 12px 14px; font-size: 13px; line-height: 1.5; display: flex; gap: 10px; align-items: flex-start; }
.notice-info { background: var(--primary-soft); color: #3d347c; }
.notice-warning { background: var(--amber-soft); color: #68470f; }
.notice-error { background: var(--red-soft); color: #782a37; }

.toast-root { position: fixed; right: 20px; bottom: 20px; z-index: 100; display: grid; gap: 10px; width: min(370px, calc(100vw - 40px)); }
.toast { background: #171b2e; color: white; border-radius: 13px; padding: 13px 15px; box-shadow: var(--shadow-md); display: flex; gap: 10px; align-items: flex-start; animation: toast-in .2s ease; }
.toast.success { background: #165f3b; }
.toast.error { background: #842f3d; }
.toast-copy { min-width: 0; flex: 1; }
.toast-title { font-weight: 700; font-size: 13px; }
.toast-message { font-size: 12px; opacity: .87; margin-top: 2px; line-height: 1.4; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

.loading-page { min-height: 100vh; display: grid; place-items: center; }
.loader { width: 34px; height: 34px; border: 3px solid #d9dce7; border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.mobile-backdrop { display: none; }

@media (max-width: 1050px) {
  :root { --sidebar: 220px; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid { grid-template-columns: 1fr; }
  .guidance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --sidebar: 270px; }
  .app-shell { display: block; }
  .sidebar { transform: translateX(-102%); transition: transform .2s ease; box-shadow: var(--shadow-md); }
  body.sidebar-open .sidebar { transform: translateX(0); }
  .mobile-backdrop { position: fixed; inset: 0; background: rgba(12,14,26,.45); z-index: 19; }
  body.sidebar-open .mobile-backdrop { display: block; }
  .main { grid-column: auto; }
  .topbar { height: 66px; padding: 0 16px; }
  .mobile-menu { display: grid; }
  .page-heading { display: none; }
  .child-select-wrap { margin-left: auto; min-width: 0; }
  .child-select-wrap label { display: none; }
  .child-select { min-width: 0; width: min(52vw, 220px); }
  .content { padding: 20px 16px 92px; }
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .stat-grid { gap: 12px; }
  .stat-card { padding: 14px; }
  .stat-value { font-size: 26px; }
  .search-row { align-items: stretch; }
  .filter-row { align-items: stretch; }
  .filter-row .select { flex: 1 1 145px; }
  .status-tabs { width: 100%; overflow-x: auto; }
  .status-tab { flex: 1; }
  .bulk-bar { left: 16px; right: 16px; bottom: 16px; transform: none; justify-content: center; flex-wrap: wrap; }
  .detail-grid { grid-template-columns: 110px minmax(0, 1fr); gap: 16px; padding: 18px; }
  .detail-title { font-size: 22px; }
  .detail-overview { grid-column: 1 / -1; }
  .detail-sections { grid-column: 1 / -1; }
  .guidance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-actions { justify-content: stretch; }
  .review-actions .btn { flex: 1; }
  .modal-backdrop { padding: 0; align-items: end; }
  .modal { width: 100%; max-height: 94vh; border-radius: 22px 22px 0 0; }
  .admin-grid { gap: 14px; }
}

@media (max-width: 430px) {
  .login-card { padding: 26px 22px; border-radius: 22px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .card-title { font-size: 13px; }
  .card-actions { grid-template-columns: 1fr; }
  .card-actions .btn:first-child { display: none; }
  .poster-overlay { padding: 28px 7px 7px; }
  .badge { font-size: 10px; padding: 3px 6px; }
  .detail-grid { grid-template-columns: 92px minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
