/* ─── Estudio Baitana · tema claro ─── */
:root {
  --bg: #fbfbfc;
  --bg-stage: #f1f2f5;
  --surface: #ffffff;
  --border: #e8eaef;
  --border-strong: #d9dde5;
  --text: #17181c;
  --muted: #7a8091;
  --accent: #2e7cf6;
  --accent-deep: #1f6ae0;
  --accent-soft: #eaf2ff;
  --grad: linear-gradient(180deg, #55a1ff 0%, #2e7cf6 100%);
  --danger: #f0384e;
  --ok: #18b26b;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --sh-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --sh-md: 0 6px 20px rgba(16, 24, 40, .08);
  --sh-lg: 0 18px 50px rgba(16, 24, 40, .16);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.5; font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; color: inherit; background: none; border: 0; }
input, select { font-family: inherit; font-size: inherit; color: inherit; }
[hidden] { display: none !important; }
.ic { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic.sm { width: 16px; height: 16px; }
.ic.lg { width: 24px; height: 24px; }

kbd {
  background: #f2f3f6; border: 1px solid var(--border-strong); border-bottom-width: 2px;
  border-radius: 6px; padding: 1px 7px; font-size: 12px; font-family: inherit; color: var(--muted);
}

/* ═══ Botones base ═══ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 15px;
  border-radius: 999px; padding: 12px 22px; box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.25);
  transition: filter .15s, transform .15s;
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-primary:disabled { opacity: .55; transform: none; cursor: wait; }
.btn-soft {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: 14px; box-shadow: var(--sh-sm);
  transition: background .15s, border-color .15s;
}
.btn-soft:hover { background: #f6f8fb; border-color: var(--border-strong); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px; color: var(--muted);
  padding: 8px 12px; border-radius: var(--r-sm); font-weight: 600; font-size: 14px;
}
.btn-ghost:hover { background: #f2f4f8; color: var(--text); }

/* ═══════════ PANEL (dashboard) ═══════════ */
.panel-layout { display: flex; height: 100vh; padding: 14px; gap: 14px; }

.sidebar {
  width: 300px; flex: none; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-sm); padding: 22px 18px;
  display: flex; flex-direction: column; gap: 6px; overflow: auto;
}
.side-logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; letter-spacing: -.02em; padding: 4px 6px 14px; }
.side-logo .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--grad); box-shadow: var(--sh-sm); }
.side-search {
  display: flex; align-items: center; gap: 9px; background: #f3f4f7; border: 1px solid transparent;
  border-radius: 999px; padding: 10px 14px; margin-bottom: 16px; color: var(--muted);
}
.side-search:focus-within { border-color: var(--accent); background: #fff; }
.side-search input { border: 0; outline: 0; background: none; flex: 1; font-size: 14px; color: var(--text); }
.side-search kbd { margin-left: auto; }
.side-label { font-size: 12.5px; font-weight: 700; color: var(--muted); padding: 4px 8px 6px; }
.side-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; color: var(--text); width: 100%; text-align: left;
}
.side-item:hover { background: #f3f5f9; }
.side-item.active { background: var(--accent-soft); color: var(--accent); }
.side-item .count { margin-left: auto; color: var(--muted); font-weight: 600; font-size: 13.5px; }
.side-item.active .count { color: var(--accent); }
.side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 6px; padding-top: 14px; }
.side-user { display: flex; align-items: center; gap: 10px; padding: 10px 6px 2px; border-top: 1px solid var(--border); margin-top: 8px; }
.side-user .avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 16px;
}
.side-user .who strong { display: block; font-size: 14px; }
.side-user .who span { color: var(--muted); font-size: 12.5px; }

.panel-main { flex: 1; overflow: auto; border-radius: var(--r-xl); }
.empty-hero { min-height: 100%; display: grid; place-items: center; padding: 40px 20px; }
.empty-inner { width: 100%; max-width: 560px; text-align: center; }
.empty-inner .wave { font-size: 44px; }
.empty-inner h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; margin: 10px 0 4px; }
.empty-inner p { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.big-action {
  display: flex; align-items: center; gap: 14px; width: 100%; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 22px; margin-bottom: 14px;
  font-size: 16.5px; font-weight: 700; box-shadow: var(--sh-sm); transition: border-color .15s, box-shadow .15s;
}
.big-action:hover { border-color: var(--accent); box-shadow: var(--sh-md); }
.big-action.dashed { border-style: dashed; border-color: var(--border-strong); box-shadow: none; }
.big-action.dashed:hover { border-color: var(--accent); }
.big-action .bicon {
  width: 46px; height: 46px; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; flex: none;
}
.big-action.dashed .bicon { background: #f3f4f7; color: var(--muted); }
.empty-foot { color: var(--muted); font-size: 14.5px; margin-top: 18px; }
.empty-foot a { color: var(--accent); text-decoration: none; font-weight: 600; }
.empty-foot a:hover { text-decoration: underline; }

.grid-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 26px 6px; }
.grid-head h1 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px; padding: 18px 26px 40px;
}
.video-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm); cursor: pointer; transition: box-shadow .15s, border-color .15s;
  text-align: left;
}
.video-card:hover { box-shadow: var(--sh-md); border-color: var(--border-strong); }
.video-card .thumb { position: relative; aspect-ratio: 16/9; background: #dfe3ea; }
.video-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card .thumb .dur {
  position: absolute; right: 8px; bottom: 8px; background: rgba(12, 14, 18, .78); color: #fff;
  font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 6px;
}
.video-card .vc-body { padding: 12px 14px; display: flex; align-items: center; gap: 8px; }
.video-card .vc-body .meta { flex: 1; min-width: 0; }
.video-card .vc-body strong { display: block; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-card .vc-body span { color: var(--muted); font-size: 12.5px; }
.vc-act { color: var(--muted); padding: 7px; border-radius: 8px; }
.vc-act:hover { background: #f2f4f8; color: var(--text); }
.vc-act.danger:hover { color: var(--danger); background: #fdeef0; }

/* ═══════════ EDITOR ═══════════ */
.editor-layout { display: flex; flex-direction: column; height: 100vh; background: var(--bg-stage); }
.ed-top {
  display: flex; align-items: center; gap: 10px; background: var(--surface);
  border-bottom: 1px solid var(--border); padding: 10px 18px; z-index: 20;
}
.ed-title { display: flex; align-items: center; gap: 8px; min-width: 0; flex: 1; }
.ed-title .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--grad); flex: none; }
#videoTitle {
  border: 1px solid transparent; border-radius: 8px; padding: 6px 10px; font-weight: 700; font-size: 15px;
  max-width: 340px; width: 100%; outline: none; background: transparent; text-overflow: ellipsis;
}
#videoTitle:hover { border-color: var(--border); }
#videoTitle:focus { border-color: var(--accent); background: #fff; }
.ed-saved { color: var(--muted); font-size: 12.5px; display: inline-flex; align-items: center; gap: 4px; flex: none; }
.ed-saved .ic { width: 14px; height: 14px; color: var(--ok); }

.ed-tools { display: flex; align-items: center; gap: 4px; }
.ed-tool {
  display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 13px;
  border-radius: var(--r-sm); color: var(--text); font-size: 11.5px; font-weight: 600;
}
.ed-tool:hover { background: #f2f4f8; }
.ed-tool.active { background: var(--accent-soft); color: var(--accent); }
.ed-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.ed-zoom { display: flex; align-items: center; gap: 2px; color: var(--muted); font-weight: 600; font-size: 13.5px; }
.ed-zoom button { padding: 6px; border-radius: 7px; }
.ed-zoom button:hover { background: #f2f4f8; }

.ed-body { flex: 1; display: flex; min-height: 0; position: relative; }
.ed-stage { flex: 1; display: grid; place-items: center; overflow: auto; padding: 26px; }
.ed-stage-inner { position: relative; }
#player {
  display: block; max-width: min(100%, 960px); max-height: 58vh; border-radius: var(--r-md);
  background: #000; box-shadow: var(--sh-md);
}
.ed-stage.z100 #player, .ed-stage.z150 #player { max-width: none; max-height: none; }

.ed-rail {
  width: 74px; flex: none; background: var(--surface); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 8px; z-index: 15;
}
.rail-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%;
  padding: 10px 4px; border-radius: var(--r-md); font-size: 11px; font-weight: 700; color: var(--muted);
}
.rail-btn:hover { background: #f2f4f8; color: var(--text); }
.rail-btn.active { background: var(--accent-soft); color: var(--accent); }
.rail-btn.create { color: var(--accent); }

.ed-panel {
  position: absolute; top: 16px; right: 90px; width: 320px; max-height: calc(100% - 32px);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 20px; overflow: auto; z-index: 18;
}
.ed-panel h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 4px; }
.ed-panel .sub { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.export-opt {
  display: flex; align-items: center; gap: 12px; width: 100%; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 13px 15px; margin-bottom: 10px; text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
.export-opt:hover { border-color: var(--accent); box-shadow: var(--sh-sm); }
.export-opt:disabled { opacity: .5; cursor: wait; }
.export-opt strong { font-size: 15px; display: block; }
.export-opt span { color: var(--muted); font-size: 12.5px; }
.export-opt .bicon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.panel-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.panel-row:last-child { border-bottom: 0; }
.panel-row .lab { color: var(--muted); }
.progress { background: #f3f4f7; border-radius: 999px; height: 34px; position: relative; overflow: hidden; margin-top: 6px; }
.progress-bar { position: absolute; inset: 0; width: 0%; background: var(--accent-soft); transition: width .2s; }
.progress span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 13px; font-weight: 600; color: var(--accent-deep); }

/* Interruptor */
.switch { appearance: none; width: 44px; height: 25px; border-radius: 999px; background: #d9dde6; position: relative; transition: background .15s; flex: none; cursor: pointer; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: var(--sh-sm); transition: left .15s; }
.switch:checked { background: var(--accent); }
.switch:checked::after { left: 22px; }

/* ─── Línea de tiempo ─── */
.ed-timeline { background: var(--surface); border-top: 1px solid var(--border); padding: 10px 18px 16px; z-index: 20; }
.tl-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.tl-chip {
  display: inline-flex; align-items: center; gap: 7px; background: #f3f4f7; border-radius: 999px;
  padding: 7px 14px; font-weight: 700; font-size: 13px;
}
.tl-transport {
  display: flex; align-items: center; gap: 8px; background: #101216; color: #fff;
  border-radius: 999px; padding: 7px 16px; margin: 0 auto; font-variant-numeric: tabular-nums; font-size: 13.5px; font-weight: 600;
}
.tl-transport button { color: #fff; display: grid; place-items: center; padding: 4px; border-radius: 50%; }
.tl-transport button:hover { background: rgba(255,255,255,.14); }
.tl-transport .t-play { background: #fff; color: #101216; width: 34px; height: 34px; }
.tl-transport .t-play:hover { background: #e8eaef; }
.tl-trim-label { color: var(--muted); font-size: 12.5px; font-weight: 600; margin-left: auto; display: flex; gap: 10px; align-items: center; }
.tl-ruler { position: relative; height: 20px; margin: 2px 0 4px; color: var(--muted); font-size: 10.5px; user-select: none; }
.tl-ruler .tick { position: absolute; top: 0; transform: translateX(-50%); }
.tl-track-wrap { position: relative; }
.tl-track {
  position: relative; height: 74px; border-radius: var(--r-md); overflow: hidden;
  border: 2px solid var(--accent); background: #e8eaef; cursor: pointer; box-shadow: var(--sh-sm);
}
.tl-thumbs { display: flex; height: 100%; }
.tl-thumbs img { flex: 1; min-width: 0; object-fit: cover; height: 100%; pointer-events: none; }
.tl-shade { position: absolute; top: 0; bottom: 0; background: rgba(240, 242, 246, .82); pointer-events: none; }
.tl-handle {
  position: absolute; top: -6px; bottom: -6px; width: 16px; border-radius: 8px; background: var(--accent);
  cursor: ew-resize; transform: translateX(-50%); box-shadow: var(--sh-md); z-index: 6;
  display: grid; place-items: center;
}
.tl-handle::after { content: ""; width: 3px; height: 22px; border-radius: 2px; background: rgba(255,255,255,.85); }
.tl-playhead { position: absolute; top: -10px; bottom: -4px; width: 2.5px; background: #101216; transform: translateX(-50%); z-index: 5; pointer-events: none; }
.tl-playhead::before { content: ""; position: absolute; top: -3px; left: 50%; transform: translateX(-50%); width: 11px; height: 11px; border-radius: 3px; background: #101216; }

/* ═══════════ GRABACIÓN (estudio) ═══════════ */
.studio-layout { height: 100vh; display: grid; place-items: center; background: var(--bg-stage); position: relative; overflow: hidden; padding: 26px; }
.stage { position: relative; max-width: 100%; }
#preview { display: block; max-width: 100%; max-height: 82vh; border-radius: var(--r-lg); box-shadow: var(--sh-lg); background: #000; touch-action: none; }
.countdown { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(10, 12, 16, .45); border-radius: var(--r-lg); z-index: 8; }
.countdown span { font-size: 120px; font-weight: 800; color: #fff; text-shadow: 0 8px 40px rgba(0,0,0,.5); }
.text-input {
  position: absolute; z-index: 9; background: #fff; border: 1.5px solid var(--accent);
  border-radius: 9px; padding: 8px 11px; font-size: 15px; min-width: 230px; outline: none; box-shadow: var(--sh-md);
}
.stage-hint {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 8;
  background: rgba(12, 14, 18, .82); color: #fff; border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; pointer-events: none; white-space: nowrap;
}

/* Barra flotante de grabación */
.float-dock {
  position: absolute; left: 26px; bottom: 26px; z-index: 30;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.pill {
  display: flex; align-items: center; gap: 2px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 10px; box-shadow: var(--sh-lg);
}
.pill .sep { width: 1px; height: 22px; background: var(--border); margin: 0 5px; }
.p-btn { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--text); position: relative; }
.p-btn:hover { background: #f2f4f8; }
.p-btn.active { background: var(--accent-soft); color: var(--accent); }
.p-btn.rec-stop { background: var(--danger); color: #fff; }
.p-btn.rec-stop:hover { filter: brightness(1.08); background: var(--danger); }
.p-btn.muted { background: #fdeef0; color: var(--danger); }
.p-time { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 14px; padding: 0 10px; min-width: 58px; text-align: center; }
.p-time.paused { color: var(--muted); }
.color-btn { width: 21px; height: 21px; border-radius: 50%; border: 2.5px solid #fff; box-shadow: 0 0 0 1.5px var(--border-strong); margin: 0 3.5px; transition: transform .12s; }
.color-btn.active { box-shadow: 0 0 0 2px var(--accent); transform: scale(1.15); }
#strokeSize { width: 70px; accent-color: var(--accent); margin: 0 6px; }

/* Selección de área */
.crop-layer { position: absolute; inset: 0; z-index: 12; cursor: crosshair; border-radius: var(--r-lg); overflow: hidden; }
.crop-dim { position: absolute; inset: 0; background: rgba(10, 12, 16, .5); }
.crop-rect {
  position: absolute; border: 2px solid var(--accent); background: rgba(46, 124, 246, .08);
  box-shadow: 0 0 0 9999px rgba(10, 12, 16, .5);
}
.crop-actions { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; gap: 10px; z-index: 13; }

/* ═══════════ POPOVER ═══════════ */

/* Popover de grabación */
.rec-pop {
  position: fixed; top: 16px; right: 16px; z-index: 70; width: 400px; max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: 18px 20px 20px; max-height: calc(100vh - 32px); overflow: auto;
}
.rec-pop .ctx {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #101216; color: #fff; border-radius: 999px; padding: 9px 8px 9px 18px;
  font-size: 13.5px; font-weight: 600; margin-bottom: 16px;
}
.rec-pop .ctx button { color: #fff; padding: 6px; border-radius: 50%; }
.rec-pop .ctx button:hover { background: rgba(255,255,255,.15); }
.rec-tabs { display: flex; align-items: flex-end; gap: 2px; border-bottom: 1.5px solid var(--border); margin-bottom: 16px; }
.rec-tab {
  display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 8px 14px 10px;
  color: var(--muted); font-size: 13px; font-weight: 700; border-bottom: 2.5px solid transparent; margin-bottom: -1.5px;
}
.rec-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.rec-tab:hover:not(.active) { color: var(--text); }
.field { margin-bottom: 12px; }
.field .f-label { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; display: block; }
.select-wrap {
  display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 0 12px; background: var(--surface); transition: border-color .15s;
}
.select-wrap:focus-within { border-color: var(--accent); }
.select-wrap .ic { color: var(--accent); }
.select-wrap select { flex: 1; border: 0; outline: 0; background: none; padding: 12px 0; font-size: 14px; font-weight: 600; appearance: none; min-width: 0; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 2px; font-size: 14.5px; font-weight: 600; }
.toggle-row small { display: block; color: var(--muted); font-weight: 500; font-size: 12.5px; }
.rec-cta {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 15.5px;
  border-radius: 999px; padding: 15px; margin-top: 8px; box-shadow: var(--sh-md), inset 0 1px 0 rgba(255,255,255,.3);
  transition: filter .15s;
}
.rec-cta:hover { filter: brightness(1.07); }
.rec-cta:disabled { opacity: .55; cursor: wait; }
.rec-cta .kbd-hint { font-weight: 600; font-size: 12.5px; opacity: .8; margin-left: 4px; }
.more-toggle { width: 100%; text-align: center; color: var(--muted); font-weight: 700; font-size: 13.5px; padding: 12px 0 2px; display: inline-flex; justify-content: center; align-items: center; gap: 6px; }
.more-toggle:hover { color: var(--text); }
.more-opts { border-top: 1px solid var(--border); margin-top: 12px; padding-top: 4px; }
.fx-row { display: flex; gap: 7px; flex-wrap: wrap; padding: 6px 0 4px; }
.fx-btn {
  border: 2px solid var(--border); border-radius: 10px; padding: 7px 11px; font-size: 12.5px; font-weight: 700;
  color: var(--muted); transition: border-color .15s;
}
.fx-btn.fx-thumb { width: 46px; height: 33px; background-size: cover; background-position: center; padding: 0; }
.fx-btn.active { border-color: var(--accent); color: var(--accent); }
.mini-select { border: 1px solid var(--border); border-radius: 9px; padding: 7px 9px; font-size: 13px; font-weight: 600; background: var(--surface); outline: none; }
.mini-select:focus { border-color: var(--accent); }

/* ═══════════ Toasts ═══════════ */
.toasts { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; gap: 8px; z-index: 99; align-items: center; }
.toast {
  background: #101216; color: #fff; border-radius: 999px; padding: 11px 20px; font-size: 14px;
  font-weight: 600; box-shadow: var(--sh-lg); animation: toastIn .25s ease; display: flex; gap: 8px; align-items: center;
}
.toast.error { background: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 900px) {
  .sidebar { display: none; }
  .panel-layout { padding: 10px; }
  .ed-panel { right: 12px; width: calc(100vw - 100px); max-width: 320px; }
    .ed-tools { display: none; }
}
