:root {
  color-scheme: dark;
  --canvas: #0e0f0d;
  --surface: #151613;
  --surface-2: #1b1d19;
  --surface-3: #22241f;
  --line: #30322b;
  --line-soft: #252720;
  --text: #f3f0e8;
  --muted: #9d9d91;
  --quiet: #74766b;
  --accent: #e8a633;
  --accent-strong: #ffc15a;
  --accent-ink: #1c1406;
  --good: #71b47d;
  --warn: #e8a633;
  --bad: #e07168;
  --info: #7da6ca;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--text);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--canvas); }
body { margin: 0; min-height: 100vh; background: var(--canvas); }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: var(--accent-strong); text-underline-offset: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 12px; font-size: clamp(30px, 3.2vw, 48px); line-height: 1.02; letter-spacing: -.04em; }
h2 { margin-bottom: 5px; font-size: 19px; letter-spacing: -.015em; }
h3 { margin-bottom: 4px; font-size: 15px; }
.hidden { display: none !important; }
.srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mobileOnly { display: none !important; }
.muted { color: var(--muted); }
.eyebrow { margin: 0 0 7px; color: var(--accent); font-size: 10px; line-height: 1.2; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.button, .iconButton, .navItem, .filter, .quickTimes button, .promptChips button, .dialogTabs button {
  border: 0;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, opacity .18s ease;
}
.button { min-height: 42px; padding: 0 17px; border-radius: 8px; background: var(--surface-3); color: var(--text); font-weight: 750; }
.button:hover { background: #2a2d26; transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.button.primary { background: var(--accent); color: var(--accent-ink); }
.button.primary:hover { background: var(--accent-strong); }
.button.secondary { border: 1px solid #494b42; background: transparent; }
.button.ghost { background: transparent; color: var(--muted); }
.button.danger { background: #9e3f39; color: #fff; }
.button.ghostDanger { background: transparent; color: #ee8e86; }
.button.compact { min-height: 36px; padding-inline: 12px; font-size: 13px; }
.button.wide { width: 100%; }
.iconButton { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; background: transparent; color: var(--muted); font-size: 20px; }
.iconButton:hover { background: var(--surface-3); color: var(--text); }

.loginScreen { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 0, #2b2113 0, var(--canvas) 44%); }
.loginBox { width: min(400px, 100%); padding: 36px 0; }
.loginBox h1 { font-size: 38px; }
.loginBox .brandMark { margin-bottom: 30px; }
.fieldError { min-height: 20px; color: #ff9a92; font-size: 13px; }
.brandMark { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-family: Georgia, serif; font-size: 19px; font-weight: 900; letter-spacing: -.08em; }
.brandMark.small { width: 36px; height: 36px; font-size: 13px; }

.appShell { min-height: 100vh; }
.appHeader { height: 68px; position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 22px; border-bottom: 1px solid var(--line-soft); background: rgba(14,15,13,.94); backdrop-filter: blur(16px); }
.brandLockup { display: flex; align-items: center; gap: 11px; }
.brandLockup div:last-child { display: grid; gap: 1px; }
.brandLockup strong { font-size: 14px; }
.brandLockup span { color: var(--muted); font-size: 11px; }
.headerActions { display: flex; align-items: center; gap: 8px; }
.systemPulse { display: flex; align-items: center; gap: 7px; margin-right: 5px; color: var(--muted); font-size: 12px; }
.systemPulse i { width: 7px; height: 7px; border-radius: 50%; background: var(--warn); box-shadow: 0 0 0 4px rgba(232,166,51,.1); }
.systemPulse.good i { background: var(--good); box-shadow: 0 0 0 4px rgba(113,180,125,.1); }
.systemPulse.bad i { background: var(--bad); box-shadow: 0 0 0 4px rgba(224,113,104,.1); }

.appBody { min-height: calc(100vh - 68px); display: grid; grid-template-columns: 208px minmax(460px, 1fr) 350px; }
.sideNav { position: sticky; top: 68px; height: calc(100vh - 68px); display: flex; flex-direction: column; gap: 4px; padding: 22px 13px; border-right: 1px solid var(--line-soft); }
.navItem { width: 100%; min-height: 45px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 7px; padding: 0 11px; border-radius: 7px; background: transparent; color: var(--muted); text-align: left; font-size: 13px; font-weight: 700; }
.navItem > span { color: var(--quiet); font-size: 10px; letter-spacing: .08em; }
.navItem b { min-width: 20px; color: var(--quiet); font-size: 11px; text-align: right; }
.navItem:hover { background: var(--surface); color: var(--text); }
.navItem.active { background: var(--surface-2); color: var(--text); }
.navItem.active > span { color: var(--accent); }
.navFoot { margin-top: auto; padding: 15px 11px 3px; border-top: 1px solid var(--line-soft); }
.navFoot p { margin-bottom: 8px; color: var(--quiet); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.navFoot strong, .navFoot span { display: block; font-size: 11px; line-height: 1.55; }
.navFoot span { color: var(--muted); }

.workspace { min-width: 0; padding: 46px clamp(24px, 4vw, 64px) 80px; }
.tabPage { display: none; animation: pageIn .28s ease both; }
.tabPage.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pageHead { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.pageHead > div:first-child { max-width: 720px; }
.pageHead p:last-child { max-width: 640px; margin-bottom: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.toggleLine { display: flex; align-items: center; gap: 9px; padding-bottom: 5px; color: var(--muted); font-size: 12px; white-space: nowrap; cursor: pointer; }
.toggleLine input { position: absolute; opacity: 0; }
.toggleLine > span { width: 34px; height: 19px; position: relative; border-radius: 20px; background: #3a3c35; }
.toggleLine > span::after { content: ""; width: 13px; height: 13px; position: absolute; top: 3px; left: 3px; border-radius: 50%; background: #b9bbaf; transition: transform .2s ease, background .2s ease; }
.toggleLine input:checked + span { background: #815d1f; }
.toggleLine input:checked + span::after { transform: translateX(15px); background: var(--accent-strong); }

.dropZone { min-height: 238px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 22px; padding: 36px; border: 1px dashed #535448; border-radius: 12px; background: #131410; outline: none; transition: border .2s ease, background .2s ease, transform .2s ease; }
.dropZone:hover, .dropZone:focus-visible, .dropZone.dragging { border-color: var(--accent); background: #19170f; }
.dropZone.dragging { transform: scale(.995); }
.uploadGlyph { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-3); color: var(--accent); font-size: 25px; }
.dropZone h2 { margin-bottom: 7px; font-size: 21px; }
.dropZone p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.localUploads { display: grid; gap: 1px; margin-top: 14px; background: var(--line-soft); }
.localUpload { display: grid; grid-template-columns: 1fr minmax(130px, 28%) auto; align-items: center; gap: 18px; padding: 13px 15px; background: var(--surface); }
.localUpload strong { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.localUpload small { color: var(--muted); }
.progressTrack { height: 3px; overflow: hidden; background: #34362f; }
.progressTrack i { display: block; width: 0; height: 100%; background: var(--accent); transition: width .2s linear; }

.workSection { margin-top: 48px; }
.sectionHead { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.sectionHead p { margin-bottom: 0; color: var(--muted); font-size: 12px; }
.filterGroup { display: flex; gap: 2px; }
.filter { min-height: 30px; padding: 0 10px; border-radius: 6px; background: transparent; color: var(--quiet); font-size: 11px; font-weight: 700; }
.filter:hover, .filter.active { background: var(--surface-3); color: var(--text); }
.videoList { display: grid; }
.videoRow { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 150px auto; align-items: center; gap: 20px; min-height: 96px; padding: 18px 2px; border-bottom: 1px solid var(--line-soft); transition: background .18s ease, padding .18s ease; }
.videoRow:hover { margin-inline: -12px; padding-inline: 12px; background: var(--surface); }
.videoIdentity { min-width: 0; display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 13px; align-items: center; }
.fileBadge { width: 38px; height: 48px; display: grid; place-items: center; border: 1px solid #3d3f37; border-radius: 5px; color: var(--quiet); font-size: 9px; font-weight: 800; letter-spacing: .05em; }
.videoIdentity h3 { margin: 0 0 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.videoIdentity p { margin: 0; color: var(--muted); font-size: 11px; }
.videoState { display: grid; gap: 5px; }
.status { width: fit-content; display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 750; text-transform: capitalize; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--quiet); }
.status[data-tone="good"]::before { background: var(--good); }
.status[data-tone="warn"]::before { background: var(--warn); }
.status[data-tone="bad"]::before { background: var(--bad); }
.status[data-tone="info"]::before { background: var(--info); animation: softPulse 1.6s infinite; }
@keyframes softPulse { 50% { opacity: .35; } }
.videoState small { color: var(--quiet); font-size: 10px; }
.rowActions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; }
.rowActions .button { min-height: 35px; font-size: 11px; }
.errorLine { grid-column: 1 / -1; margin: -6px 0 0 51px; color: #e88e86; font-size: 11px; line-height: 1.5; }
.emptyState { padding: 64px 20px; border-bottom: 1px solid var(--line-soft); text-align: center; }
.emptyState strong { display: block; margin-bottom: 8px; font-size: 16px; }
.emptyState span { color: var(--muted); font-size: 13px; }

.channelSheet { border-top: 1px solid var(--line); }
.channelMain { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.channelIdentity { display: flex; align-items: center; gap: 14px; }
.channelAvatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: #31240f; color: var(--accent); font-family: Georgia,serif; font-weight: 900; }
.channelIdentity h2 { margin: 0 0 4px; }
.channelIdentity p { margin: 0; color: var(--muted); font-size: 12px; }
.channelFacts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.channelFact { padding: 22px 20px 22px 0; border-bottom: 1px solid var(--line-soft); }
.channelFact span { display: block; margin-bottom: 7px; color: var(--quiet); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.channelFact strong { font-size: 12px; word-break: break-all; }

.copilotPanel { position: sticky; top: 68px; height: calc(100vh - 68px); display: flex; flex-direction: column; border-left: 1px solid var(--line-soft); background: #11120f; }
.copilotHead { display: flex; align-items: center; justify-content: space-between; padding: 24px 20px 18px; border-bottom: 1px solid var(--line-soft); }
.copilotHead h2 { margin: 0; font-size: 16px; }
.chatLog { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; padding: 22px 20px 26px; scrollbar-width: thin; }
.bubble { max-width: 92%; align-self: flex-start; color: #d7d7cc; font-size: 12.5px; line-height: 1.72; white-space: pre-wrap; overflow-wrap: anywhere; }
.bubble.user { align-self: flex-end; margin-top: 12px; padding: 11px 14px; border-radius: 14px 14px 4px 14px; background: var(--surface-3); color: var(--text); }
.bubble.user:first-child { margin-top: 0; }
.bubble + .bubble.user { margin-top: 18px; }
.bubbleMeta { margin-bottom: 6px; color: var(--quiet); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.promptChips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 18px 14px; }
.promptChips button { padding: 7px 9px; border: 1px solid var(--line); border-radius: 99px; background: transparent; color: var(--muted); font-size: 10px; }
.promptChips button:hover { border-color: #55574e; color: var(--text); }
.chatForm { margin-top: auto; padding: 8px 10px 10px; border-top: 1px solid var(--line-soft); background: #11120f; }
.chatBox { display: flex; align-items: flex-end; gap: 6px; padding: 4px 4px 4px 0; border: 1px solid #3b3d35; border-radius: 12px; background: #11120f; transition: border .15s ease, box-shadow .15s ease; }
.chatBox:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,166,51,.09); }
.chatBox textarea { flex: 1; min-height: 20px; max-height: 110px; padding: 9px 4px 9px 12px; resize: none; border: 0; border-radius: 12px; background: transparent; box-shadow: none; }
.chatBox textarea:focus { border: 0; box-shadow: none; }
.chatBoxFoot { display: flex; align-items: center; gap: 8px; padding-bottom: 1px; }
.chatBoxFoot span { color: var(--quiet); font-size: 10px; }
.chatBoxFoot span:empty { display: none; }

.field { display: grid; gap: 7px; margin-bottom: 18px; color: #d9d8cf; font-size: 12px; font-weight: 700; }
.field > span { display: flex; justify-content: space-between; gap: 15px; }
.field small, .fieldHint { color: var(--quiet); font-size: 10px; font-weight: 500; }
input, textarea, select { width: 100%; border: 1px solid #3b3d35; border-radius: 7px; outline: none; background: #11120f; color: var(--text); padding: 11px 12px; transition: border .15s ease, box-shadow .15s ease; }
textarea { resize: vertical; line-height: 1.55; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,166,51,.09); }
input[type="checkbox"], input[type="radio"] { width: auto; accent-color: var(--accent); }

.dialog { max-width: none; max-height: none; padding: 0; border: 0; border-radius: 13px; background: var(--surface); color: var(--text); box-shadow: 0 28px 100px rgba(0,0,0,.65); }
.dialog::backdrop { background: rgba(4,5,4,.78); backdrop-filter: blur(5px); }
.dialog[open] { animation: dialogIn .2s ease both; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }
.dialogFrame { width: min(880px, calc(100vw - 32px)); max-height: min(860px, calc(100vh - 32px)); display: flex; flex-direction: column; }
.smallFrame { width: min(460px, calc(100vw - 32px)); }
.dialogHead { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 24px 26px 18px; border-bottom: 1px solid var(--line-soft); }
.dialogHead h2 { margin-bottom: 6px; font-size: 22px; }
.dialogHead p:last-child { max-width: 660px; margin: 0; color: var(--muted); font-size: 11px; }
.dialogTabs { display: flex; gap: 20px; padding: 0 26px; border-bottom: 1px solid var(--line-soft); }
.dialogTabs button { position: relative; min-height: 44px; padding: 0; background: transparent; color: var(--quiet); font-size: 11px; font-weight: 750; }
.dialogTabs button.active { color: var(--text); }
.dialogTabs button.active::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--accent); }
.dialogBody { flex: 1; overflow-y: auto; padding: 24px 26px; }
.dialogFoot { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 26px; border-top: 1px solid var(--line-soft); }
.dialogFoot > div { display: flex; gap: 7px; }
.reviewPage { display: none; }
.reviewPage.active { display: block; animation: pageIn .2s ease; }
.transcript { min-height: 360px; margin: 14px 0 0; padding: 18px; border: 1px solid var(--line-soft); border-radius: 8px; background: #0d0e0c; color: #d5d4ca; font: 12px/1.7 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; }
.detailStrip { display: flex; flex-wrap: wrap; gap: 7px; }
.detailStrip span, .auditPill { padding: 6px 8px; border-radius: 5px; background: var(--surface-3); color: var(--muted); font-size: 10px; }
.auditSection { padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line-soft); }
.auditSection h3 { margin-bottom: 12px; }
.auditSection pre { padding: 13px; overflow: auto; border-radius: 7px; background: #0d0e0c; color: #c9c8bf; font: 11px/1.6 ui-monospace,monospace; white-space: pre-wrap; }
.warningList { margin: 8px 0 0; padding-left: 18px; color: #e8b770; font-size: 12px; line-height: 1.6; }

.scheduleDialog .dialogFrame { width: min(620px, calc(100vw - 32px)); }
.scheduleBody { display: grid; gap: 20px; }
.channelDestination { display: flex; align-items: center; gap: 11px; padding: 13px; border: 1px solid var(--line); border-radius: 8px; }
.channelDestination i { width: 9px; height: 9px; border-radius: 50%; background: var(--good); }
.channelDestination strong, .channelDestination span { display: block; }
.channelDestination span { color: var(--muted); font-size: 10px; }
.modePicker { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; border: 0; }
.modePicker legend { margin-bottom: 8px; color: var(--muted); font-size: 11px; }
.modePicker label { display: flex; gap: 10px; align-items: flex-start; padding: 13px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.modePicker label:has(input:checked) { border-color: var(--accent); background: #1c190f; }
.modePicker strong, .modePicker small { display: block; }
.modePicker strong { margin-bottom: 3px; font-size: 12px; }
.modePicker small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.quickTimes { display: flex; gap: 6px; margin-top: -10px; }
.quickTimes button { padding: 6px 9px; border-radius: 5px; background: var(--surface-3); color: var(--muted); font-size: 10px; }
.confirmLine { display: flex; align-items: center; gap: 8px; color: #f0b1ab; font-size: 11px; }
.safetyNote { display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 13px; border-left: 2px solid var(--accent); background: #1b1810; font-size: 10px; line-height: 1.55; }
.safetyNote span { color: var(--muted); }
.confirmDialog p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.6; }

.toastRegion { position: fixed; right: 18px; bottom: 18px; z-index: 120; display: grid; gap: 8px; pointer-events: none; }
.toast { width: min(380px, calc(100vw - 36px)); padding: 12px 14px; border: 1px solid #494b42; border-radius: 8px; background: #1d1f1a; box-shadow: 0 15px 50px rgba(0,0,0,.4); color: var(--text); font-size: 12px; animation: toastIn .25s ease both; }
.toast.error { border-color: #793f3a; }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  .appBody { grid-template-columns: 190px minmax(0, 1fr); }
  .copilotPanel { position: fixed; top: 0; right: 0; z-index: 60; width: min(380px, 94vw); height: 100vh; visibility: hidden; transform: translateX(101%); box-shadow: -30px 0 90px rgba(0,0,0,.5); transition: transform .25s ease, visibility 0s linear .25s; }
  .copilotPanel.open { visibility: visible; transform: none; transition-delay: 0s; }
  .mobileOnly { display: grid !important; }
  .copilotFab { position: fixed; right: 16px; bottom: 16px; z-index: 50; min-height: 43px; padding: 0 16px; border: 0; border-radius: 99px; background: var(--accent); color: var(--accent-ink); font-weight: 800; box-shadow: 0 12px 35px rgba(0,0,0,.35); }
}

@media (max-width: 760px) {
  .appHeader { height: 60px; padding: 0 12px; }
  .brandLockup span, .systemPulse span, #logoutBtn { display: none; }
  .appBody { min-height: calc(100vh - 60px); display: block; }
  .sideNav { height: 56px; position: fixed; top: auto; right: 0; bottom: 0; left: 0; z-index: 40; display: grid; grid-template-columns: repeat(3, 1fr); padding: 5px 8px; border-top: 1px solid var(--line); border-right: 0; background: rgba(17,18,15,.97); backdrop-filter: blur(14px); }
  .navItem { min-height: 45px; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 0; font-size: 10px; text-align: center; }
  .navItem > span, .navItem b, .navFoot { display: none; }
  .workspace { padding: 30px 16px 90px; }
  .pageHead { display: block; margin-bottom: 25px; }
  .pageHead h1 { font-size: 34px; }
  .toggleLine { margin-top: 18px; }
  .dropZone { min-height: 260px; grid-template-columns: 1fr; justify-items: center; gap: 14px; padding: 28px 18px; text-align: center; }
  .sectionHead { align-items: flex-start; }
  .filterGroup { display: none; }
  .videoRow { grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; }
  .videoState { display: none; }
  .rowActions .button.secondary { display: none; }
  .errorLine { margin-left: 0; }
  .localUpload { grid-template-columns: 1fr auto; }
  .localUpload .progressTrack { grid-column: 1 / -1; grid-row: 2; }
  .channelMain { grid-template-columns: 1fr; }
  .channelMain .button { width: 100%; }
  .channelFacts { grid-template-columns: 1fr; }
  .dialogFrame { width: 100vw !important; max-height: 94vh; border-radius: 14px 14px 0 0; }
  .dialog { margin: auto 0 0; border-radius: 14px 14px 0 0; }
  .dialogHead, .dialogBody { padding-inline: 18px; }
  .dialogFoot { padding-inline: 14px; }
  .dialogFoot #deleteDraftBtn { width: 40px; overflow: hidden; color: transparent; position: relative; }
  .dialogFoot #deleteDraftBtn::after { content: "×"; position: absolute; inset: 0; display: grid; place-items: center; color: #ee8e86; font-size: 20px; }
  .modePicker { grid-template-columns: 1fr; }
  .toastRegion { right: 10px; bottom: 70px; }
}

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

/* Copilot action permission cards */
.actionCards { display: flex; flex-direction: column; gap: 8px; margin-top: 9px; white-space: normal; }
.actionCard { display: flex; flex-direction: column; gap: 7px; padding: 10px 12px; border: 1px solid var(--line); border-left: 3px solid var(--warn); border-radius: 10px; background: var(--surface-2); }
.actionCard[data-tone="danger"] { border-left-color: var(--bad); }
.actionCard[data-tone="good"] { border-left-color: var(--good); }
.actionCard[data-tone="bad"] { border-left-color: var(--bad); }
.actionCard[data-tone="info"] { border-left-color: var(--info); }
.actionCard[data-tone="muted"] { border-left-color: var(--quiet); opacity: .75; }
.actionCard > strong { color: var(--text); font-size: 12px; line-height: 1.45; }
.actionCard > small { color: var(--muted); font-size: 11px; }
.actionButtons { display: flex; justify-content: flex-end; gap: 7px; }
.bulkBar { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; padding: 10px 12px; border: 1px dashed var(--line); border-radius: 10px; background: var(--surface); }
.bulkBar .actionButtons { justify-content: space-between; align-items: center; }
.bulkBar strong { color: var(--muted); font-size: 11px; font-weight: 700; }
.actionState { color: var(--muted); font-size: 11px; line-height: 1.5; }
.actionState.good { color: var(--good); }
.actionState.bad { color: var(--bad); }
.compactConfirm { font-size: 10.5px; }
