:root {
  color-scheme: dark;
  --bg: #090a10;
  --panel: rgba(18, 20, 31, 0.94);
  --panel-2: rgba(28, 31, 47, 0.95);
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.2);
  --text: #f8f8fc;
  --muted: #aab0c2;
  --accent: #8b6cff;
  --accent-2: #45c9ff;
  --danger: #ff5577;
  --success: #59e0a7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(139,108,255,.18), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(69,201,255,.12), transparent 30%),
    radial-gradient(circle at 55% 95%, rgba(255,75,145,.09), transparent 28%),
    var(--bg);
}

button, input, select { font: inherit; }
button { color: inherit; }

.shell { width: min(1600px, 100%); margin: 0 auto; padding: 22px; }

.topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 4px 22px;
}

.eyebrow {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 { margin: 5px 0 4px; font-size: clamp(28px, 4vw, 46px); line-height: 1; }
h1 > span { color: var(--text); }
h1 em { color: var(--accent); font-size: .45em; font-style: normal; vertical-align: top; margin-left: .25em; }
.topbar p { margin: 0; color: var(--muted); }

.privacy-pill {
  border: 1px solid rgba(89,224,167,.3);
  background: rgba(89,224,167,.08);
  color: #caffeb;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(330px, 430px) minmax(0, 1fr) 190px;
  gap: 20px;
  align-items: start;
}

.controls { display: grid; gap: 14px; }

.card, .stage-card, .support-card, .ad-placeholder {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0,0,0,.27);
  backdrop-filter: blur(16px);
}

.card { padding: 17px; }
.card h2 { margin: 0 0 14px; font-size: 16px; }

label {
  display: block;
  margin: 11px 0 6px;
  color: #e9ebf5;
  font-size: 12px;
  font-weight: 750;
}

input[type="text"], input[type="file"], select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 11px;
  color: var(--text);
  background: var(--panel-2);
  outline: none;
}

input[type="text"]:focus, input[type="file"]:focus, select:focus {
  border-color: rgba(139,108,255,.8);
  box-shadow: 0 0 0 3px rgba(139,108,255,.13);
}

input[type="file"] { padding: 8px; }
input[type="file"]::file-selector-button {
  border: 0;
  padding: 8px 10px;
  margin-right: 9px;
  border-radius: 8px;
  color: white;
  background: #3a3e56;
  cursor: pointer;
}

.upload { margin-top: 10px; }
.upload.optional span::after { content: " · optional"; color: var(--muted); font-weight: 500; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.info-line, .estimate, .notice, .selection-summary {
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

button {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 12px;
  background: #303449;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, opacity .15s ease, background .15s ease;
}
button:hover:not(:disabled) { transform: translateY(-1px); border-color: var(--line-strong); }
button:disabled { opacity: .4; cursor: not-allowed; }
button.primary {
  border: 0;
  font-weight: 850;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 9px 28px rgba(89,127,255,.22);
}
button.secondary { width: 100%; margin-top: 12px; background: #3a3e57; font-weight: 750; }

.tabs, .segmented { display: grid; gap: 7px; }
.tabs { grid-template-columns: 1fr 1fr; }
.segmented { grid-template-columns: repeat(4, 1fr); }
.segmented#formatButtons { grid-template-columns: repeat(3, 1fr); }
.tab.active, .segmented button.active {
  background: rgba(139,108,255,.22);
  border-color: rgba(139,108,255,.7);
  color: white;
}

.mode-panel { display: none; }
.mode-panel.active { display: block; }

.time-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 12px; color: var(--muted); }
.time-row strong { color: white; }

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.tiny-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.tiny-actions button { font-size: 11px; padding: 8px; }

#waveform {
  width: 100%;
  height: 76px;
  display: block;
  margin-top: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0e1018;
}

.suggestions { display: grid; gap: 7px; margin-top: 10px; }
.suggestion {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 7px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #25293a;
}
.suggestion.active { border-color: rgba(69,201,255,.75); background: rgba(69,201,255,.1); }
.suggestion-select {
  min-width: 0;
  padding: 6px 7px;
  text-align: left;
  background: transparent;
  border: 0;
}
.suggestion-select small { color: var(--muted); display: block; margin-top: 2px; }
.suggestion-play {
  min-width: 44px;
  min-height: 40px;
  align-self: stretch;
  padding: 0;
  border: 1px solid rgba(69,201,255,.35);
  background: rgba(69,201,255,.12);
  color: var(--accent-2);
  font-size: 17px;
  font-weight: 900;
}
.suggestion-play:hover { background: rgba(69,201,255,.22); }

.range-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.range-label output { color: var(--accent-2); font-weight: 850; }

.stage-column { min-width: 0; display: grid; gap: 14px; position: sticky; top: 16px; }
.stage-card { padding: 15px; }
.stage-toolbar { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.stage-toolbar span { margin-left: auto; color: var(--muted); font-variant-numeric: tabular-nums; font-size: 13px; }

.canvas-shell {
  min-height: 630px;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(45deg, #151824 25%, transparent 25%),
    linear-gradient(-45deg, #151824 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #151824 75%),
    linear-gradient(-45deg, transparent 75%, #151824 75%), #0d0f17;
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}

#preview {
  max-width: 100%;
  max-height: 72vh;
  display: block;
  background: #050608;
  border-radius: 7px;
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
}

audio { width: 100%; margin-top: 12px; }

.ad-placeholder {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #73798d;
  border-style: dashed;
}
.ad-placeholder span { display: block; font-size: 13px; font-weight: 900; letter-spacing: .16em; }
.ad-placeholder small { display: block; margin-top: 4px; }

.support-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; }
.support-card span { color: var(--muted); font-size: 13px; }


.quality-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.quality-hint { margin-top: 10px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.progress-wrap { margin-top: 12px; }
.progress { height: 10px; border-radius: 999px; background: #11131d; overflow: hidden; border: 1px solid var(--line); }
#progressBar { width: 0; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .15s linear; }
#progressText { margin-top: 7px; color: var(--muted); font-size: 12px; }

@media (max-width: 1120px) {
  .workspace { grid-template-columns: 390px minmax(0, 1fr); }
  .canvas-shell { min-height: 480px; }
}

@media (max-width: 900px) {
  .shell { padding: 14px; }
  .topbar { align-items: flex-start; flex-direction: column; }
  .workspace { grid-template-columns: 1fr; }
  .stage-column { position: static; grid-row: 1; }
  .controls { grid-row: 2; }
  .canvas-shell { min-height: 380px; padding: 10px; }
  .privacy-pill { white-space: normal; }
}

@media (max-width: 560px) {
  .two-col, .quality-grid { grid-template-columns: 1fr; }
  .segmented { grid-template-columns: repeat(2, 1fr); }
  .stage-toolbar { flex-wrap: wrap; }
  .stage-toolbar span { width: 100%; margin-left: 0; }
  .support-card { align-items: flex-start; flex-direction: column; }
}

.advanced-controls {
  margin-top: 13px;
  padding: 10px 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}
.advanced-controls summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  color: #eef1ff;
  margin-bottom: 8px;
}
.advanced-controls[open] summary { margin-bottom: 11px; }
.advanced-controls .range-label { margin-top: 9px; }

.manual-preview {
  width: 100%;
  margin-top: 11px;
  padding: 11px 14px;
  font-size: 12px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.ghost-link { color: #dfe4f7; text-decoration: none; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-size: 13px; }
.ghost-link:hover { border-color: var(--line-strong); }

.branding-box { margin-top: 14px; padding: 12px; border: 1px solid rgba(139,108,255,.25); border-radius: 14px; background: rgba(139,108,255,.055); }
.check-row { display: flex; align-items: flex-start; gap: 10px; margin: 0; }
.check-row input { margin-top: 3px; accent-color: var(--accent); }
.check-row span { display: grid; gap: 2px; }
.check-row small { color: var(--muted); font-weight: 500; line-height: 1.4; }
.compact-grid { align-items: end; margin-top: 8px; }
.compact-grid button { margin-bottom: 0; }
.branding-preview { margin-top: 10px; padding: 9px 10px; border-radius: 10px; color: var(--muted); background: rgba(0,0,0,.16); font-size: 11px; text-align: center; }
.rights-note { margin-top: 12px; font-size: 10px; color: #858ca2; line-height: 1.4; }

.ad-rail { position: sticky; top: 16px; }
.ad-slot { border: 1px dashed rgba(255,255,255,.14); border-radius: 17px; background: rgba(18,20,31,.7); color: #7f879b; overflow: hidden; }
.ad-label { padding: 8px 10px 0; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: #6f7689; }
.adsbygoogle { display: block; width: 100%; min-height: 90px; }
.ad-side { min-height: 560px; }
.ad-side .adsbygoogle { min-height: 520px; }
.ad-inline { min-height: 110px; margin-top: 8px; }
.ad-result { min-height: 110px; max-width: 1000px; margin: 34px auto 0; }
.ad-placeholder-content { min-height: inherit; display: grid; place-content: center; gap: 4px; padding: 20px; text-align: center; }
.ad-placeholder-content strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.ad-placeholder-content span { font-size: 10px; }

.result-card { border: 1px solid rgba(89,224,167,.25); border-radius: 20px; padding: 18px; background: linear-gradient(145deg, rgba(21,42,37,.78), rgba(18,20,31,.96)); box-shadow: 0 18px 55px rgba(0,0,0,.27); }
.result-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.result-head h2 { margin: 4px 0 3px; }
.result-head p { margin: 0; color: var(--muted); font-size: 13px; }
.success-kicker { color: var(--success); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.share-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(220px,.75fr); gap: 16px; margin-top: 17px; }
.share-copy textarea { width: 100%; resize: vertical; min-height: 150px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--text); background: rgba(8,10,16,.72); font: inherit; line-height: 1.45; }
.compact-check { font-size: 11px; color: var(--muted); }
.result-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.platform-panel { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(0,0,0,.13); }
.platform-panel > span { display: block; color: var(--muted); font-size: 11px; line-height: 1.45; margin: 5px 0 12px; }
.platform-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.button-link { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 11px; padding: 10px 12px; background: #303449; color: var(--text); text-decoration: none; font-weight: 750; }
.button-link:hover { border-color: var(--line-strong); }

.content-section { margin-top: 32px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(18,20,31,.72); }
.section-heading span { color: var(--accent-2); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.section-heading h2 { margin: 5px 0 18px; font-size: clamp(22px,3vw,34px); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.feature-grid article { padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.feature-grid p { color: var(--muted); line-height: 1.55; font-size: 13px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.faq-grid details { padding: 14px 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); }
.faq-grid summary { cursor: pointer; font-weight: 750; }
.faq-grid p { color: var(--muted); line-height: 1.55; font-size: 13px; }
.site-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 28px 4px 12px; color: var(--muted); }
.site-footer > div { display: grid; gap: 4px; }
.site-footer a { color: #d7dcf0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; }

@media (max-width: 1320px) {
  .workspace { grid-template-columns: minmax(330px, 410px) minmax(0, 1fr); }
  .ad-rail { display: none; }
}
@media (max-width: 900px) {
  .workspace { grid-template-columns: 1fr; }
  .ad-rail { display: none; }
  .header-actions { width: 100%; justify-content: space-between; }
  .share-grid, .feature-grid, .faq-grid { grid-template-columns: 1fr; }
  .ad-inline { display: block; }
  .content-section { padding: 20px; }
}
@media (max-width: 560px) {
  .result-head, .site-footer { align-items: stretch; flex-direction: column; }
  .result-head { display: flex; }
  .platform-buttons { grid-template-columns: 1fr 1fr; }
  .header-actions { align-items: stretch; flex-direction: column; }
  .ghost-link, .privacy-pill { text-align: center; }
}

.legal-page { width: min(820px, calc(100% - 28px)); margin: 35px auto; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.legal-page > a { color: var(--accent-2); }
.legal-page h1 { margin: 18px 0 25px; }
.legal-page h2 { margin-top: 26px; font-size: 18px; }
.legal-page p { color: var(--muted); line-height: 1.7; }
.legal-warning { padding: 13px; border: 1px solid rgba(255,189,61,.35); border-radius: 12px; color: #ffe0a2; background: rgba(255,189,61,.07); line-height: 1.5; }


/* Final V1.1 – deutliche Rückmeldungen */
.notice {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(69,201,255,.3);
  border-radius: 12px;
  color: #e9f8ff;
  background: rgba(69,201,255,.09);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.notice::before {
  content: attr(data-icon);
  position: absolute;
  left: 13px;
  top: 11px;
  font-size: 17px;
  line-height: 1;
}
.notice-info {
  border-color: rgba(69,201,255,.38);
  background: rgba(69,201,255,.10);
  color: #dff8ff;
}
.notice-success {
  border-color: rgba(89,224,167,.52);
  background: rgba(89,224,167,.13);
  color: #d9ffef;
}
.notice-warning {
  border-color: rgba(255,189,61,.52);
  background: rgba(255,189,61,.13);
  color: #fff0c7;
}
.notice-error {
  border-color: rgba(255,85,119,.58);
  background: rgba(255,85,119,.14);
  color: #ffe1e8;
}
.info-line.status-success,
.info-line.status-warning,
.info-line.status-error,
.info-line.status-info {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 800;
}
.info-line.status-success { color: #d9ffef; background: rgba(89,224,167,.10); border: 1px solid rgba(89,224,167,.30); }
.info-line.status-warning { color: #fff0c7; background: rgba(255,189,61,.10); border: 1px solid rgba(255,189,61,.30); }
.info-line.status-error { color: #ffe1e8; background: rgba(255,85,119,.11); border: 1px solid rgba(255,85,119,.34); }
.info-line.status-info { color: #dff8ff; background: rgba(69,201,255,.08); border: 1px solid rgba(69,201,255,.25); }

.toast-stack {
  position: fixed;
  z-index: 99999;
  top: 18px;
  right: 18px;
  width: min(430px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
  pointer-events: none;
}
.toast-message {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 12px 11px 12px 13px;
  border: 1px solid rgba(69,201,255,.42);
  border-radius: 14px;
  color: #f8fbff;
  background: rgba(17,20,31,.97);
  box-shadow: 0 20px 60px rgba(0,0,0,.46);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  animation: toast-in .22s ease-out both;
}
.toast-message strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}
.toast-message .toast-icon {
  font-size: 21px;
  text-align: center;
}
.toast-message button {
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 18px;
}
.toast-message.toast-success { border-color: rgba(89,224,167,.65); box-shadow: 0 20px 60px rgba(36,155,105,.20), 0 20px 60px rgba(0,0,0,.4); }
.toast-message.toast-warning { border-color: rgba(255,189,61,.65); box-shadow: 0 20px 60px rgba(190,123,15,.18), 0 20px 60px rgba(0,0,0,.4); }
.toast-message.toast-error { border-color: rgba(255,85,119,.72); box-shadow: 0 20px 60px rgba(201,37,76,.22), 0 20px 60px rgba(0,0,0,.4); }
.toast-message.toast-info { border-color: rgba(69,201,255,.60); }
.toast-message.toast-leave { animation: toast-out .2s ease-in both; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-8px) scale(.98); }
}

.video-background-controls {
  margin-top: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(69,201,255,.22);
  border-radius: 12px;
  background: rgba(69,201,255,.045);
}

@media (max-width: 560px) {
  .toast-stack {
    top: 10px;
    right: 10px;
    width: calc(100vw - 20px);
  }
  .toast-message { min-height: 54px; }
}


/* Final V1.6 – Unterstützungsbutton zusätzlich oben */
.top-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 189, 61, .48);
  border-radius: 12px;
  color: #fff5d2;
  background: linear-gradient(135deg, rgba(255, 176, 59, .24), rgba(255, 95, 129, .18));
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.top-support-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 213, 116, .78);
  background: linear-gradient(135deg, rgba(255, 176, 59, .34), rgba(255, 95, 129, .25));
}
.top-support-button[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .top-support-button {
    width: 100%;
  }
}

/* Öffentliche Cloudflare-Version – Branding */
.brand-copy { min-width: 0; }
.brand-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 6px;
}
.title-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.title-copy h1 {
  margin: 0;
}
.by-label {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  text-transform: lowercase;
}
.header-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.header-logo {
  display: block;
  width: clamp(115px, 12vw, 185px);
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.42));
}
.copyright-note {
  color: #7f879b;
  white-space: nowrap;
}
.legal-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.legal-brand img {
  width: min(190px, 42vw);
  max-height: 105px;
  object-fit: contain;
}
.legal-brand strong {
  display: block;
  font-size: 20px;
}
.legal-brand span {
  color: var(--muted);
  font-size: 13px;
}
.legal-page ul {
  color: var(--muted);
  line-height: 1.7;
}
.legal-page a {
  color: var(--accent-2);
}
.legal-note {
  margin-top: 24px;
  padding: 13px;
  border: 1px solid rgba(89,224,167,.28);
  border-radius: 12px;
  color: #d7ffed;
  background: rgba(89,224,167,.07);
  line-height: 1.55;
}
.ad-slot[hidden] { display: none !important; }

@media (max-width: 760px) {
  .brand-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .header-logo {
    width: 150px;
    max-height: 82px;
  }
  .legal-brand {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .copyright-note {
    white-space: normal;
  }
}

/* Aktuelle Cloudflare-Version – Cover ist optional */
#coverOnlyControls[hidden],
#coverShapeLabel[hidden],
#coverMotionLabel[hidden] {
  display: none !important;
}

#coverOnlyControls {
  margin-top: 4px;
}

.cover-mode-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
