:root {
  color-scheme: dark;
  --bg: #111317;
  --panel: #1b1f26;
  --panel-2: #242a33;
  --line: #384150;
  --text: #f4f7fb;
  --muted: #9ba8b7;
  --accent: #f6d447;
  --blue: #39d6d6;
  --red: #ef4e5e;
  --green: #51c878;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
.upload-button,
select {
  border: 1px solid var(--line);
  background: #222832;
  color: var(--text);
  border-radius: 6px;
  min-height: 38px;
}

button,
.upload-button {
  cursor: pointer;
  padding: 0 12px;
}

button:hover,
.upload-button:hover,
select:hover {
  border-color: #607086;
  background: #2a313d;
}

button:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #151920;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

h2 {
  font-size: 13px;
  line-height: 1.3;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topbar p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.view-switcher {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #222832;
}

.view-tab {
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.view-tab + .view-tab {
  border-left: 1px solid var(--line);
}

.view-tab.active {
  background: var(--accent);
  color: #111317;
}

.upload-button input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.export-actions {
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #222832;
}

.export-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-height: 36px;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.export-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.export-actions button {
  border: 0;
  border-radius: 0;
  min-height: 38px;
  padding: 0 10px;
  background: transparent;
}

.export-actions button + button {
  border-left: 1px solid var(--line);
}

.export-actions button:hover {
  background: #2a313d;
}

.source-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: min(680px, 52vw);
}

.workspace {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 0;
}

.help-view {
  flex: 1;
  overflow: auto;
  padding: 22px;
}

.help-content {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.help-header {
  display: none;
}

.privacy-note {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(81, 200, 120, 0.5);
  border-radius: 8px;
  background: rgba(81, 200, 120, 0.1);
}

.privacy-note p {
  color: var(--text);
  line-height: 1.45;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.help-section {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.help-section dl {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
  gap: 9px 14px;
  margin: 0;
}

.help-section dt {
  color: var(--text);
  font-weight: 700;
}

.help-section dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.mobile-footer {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 10, 13, 0.72);
}

.modal-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.modal-panel h2 {
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
}

.modal-panel p {
  color: var(--muted);
  line-height: 1.4;
}

.modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.modal-actions.single-action {
  grid-template-columns: 1fr;
}

.tutorial-panel {
  width: min(460px, 100%);
}

.tutorial-steps {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 9px;
  color: var(--muted);
  line-height: 1.4;
}

.analysis-panel {
  min-width: 0;
  padding: 18px;
  display: grid;
  grid-template-rows: minmax(260px, 1fr);
  gap: 12px;
}

.video-stage {
  --video-aspect: 1.7778;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 260px;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #080a0d;
  background-size: 44px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-stage.is-portrait {
  justify-self: center;
  width: min(100%, calc((100vh - 118px) * var(--video-aspect)));
  height: calc(100vh - 118px);
  min-height: min(520px, calc(100vh - 118px));
  aspect-ratio: var(--video-aspect);
}

.video-stage video,
.video-stage img,
.video-stage canvas {
  max-width: 100%;
  max-height: 100%;
}

.video-stage video,
.video-stage img {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.video-stage.loaded video {
  display: block;
}

.video-stage.loaded.is-image video {
  display: none;
}

.video-stage.loaded.is-image img {
  display: block;
}

.video-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  z-index: 2;
}

.text-editor {
  position: absolute;
  z-index: 5;
  pointer-events: auto;
  touch-action: none;
  min-width: 96px;
  min-height: 48px;
  padding: 6px 8px;
  resize: both;
  overflow: auto;
  border: 2px solid var(--accent);
  border-radius: 4px;
  outline: 2px solid rgba(8, 10, 13, 0.72);
  background: rgba(8, 10, 13, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    1px 0 2px rgba(0, 0, 0, 0.85);
}

.text-editor::placeholder {
  color: rgba(244, 247, 251, 0.62);
}

.playback-overlay {
  --overlay-left: 12px;
  --overlay-top: auto;
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: min(460px, calc(100% - 24px));
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(130px, 1fr);
  align-items: center;
  gap: 5px 8px;
  padding: 6px 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: rgba(11, 14, 19, 0.58);
  backdrop-filter: blur(6px);
  opacity: 0.72;
  transition: opacity 140ms ease, background 140ms ease;
}

.playback-overlay:hover,
.playback-overlay:focus-within,
.playback-overlay.is-dragging {
  background: rgba(11, 14, 19, 0.76);
  opacity: 1;
}

.playback-overlay.is-positioned {
  bottom: auto;
  left: var(--overlay-left);
  top: var(--overlay-top);
  transform: none;
  width: min(460px, calc(100% - 16px));
}

.video-stage:not(.loaded) .playback-overlay,
.video-stage.is-image .playback-overlay {
  display: none;
}

.overlay-drag-handle {
  grid-row: 1 / span 2;
  display: inline-grid;
  justify-content: center;
  align-content: start;
  gap: 3px;
  width: 18px;
  min-width: 18px;
  min-height: 52px;
  padding: 7px 0 0;
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(34, 40, 50, 0.52);
  touch-action: none;
  cursor: grab;
}

.overlay-drag-handle:active,
.playback-overlay.is-dragging .overlay-drag-handle {
  cursor: grabbing;
}

.overlay-drag-handle span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(244, 247, 251, 0.6);
}

.empty-state {
  display: grid;
  gap: 8px;
  text-align: center;
  color: var(--muted);
  padding: 20px;
}

.empty-state strong {
  color: var(--text);
  font-size: 22px;
}

.video-stage.loaded .empty-state {
  display: none;
}

.transport {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.transport button {
  min-width: 30px;
  padding: 0 7px;
}

.transport button,
.transport select {
  min-height: 30px;
  font-size: 12px;
  background: rgba(34, 40, 50, 0.74);
}

.transport .transport-icon-button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  padding: 0;
}

.transport .transport-icon-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transport-divider {
  width: 1px;
  height: 22px;
  margin: 0 3px;
  background: rgba(148, 163, 184, 0.32);
}

.time-readout {
  margin-left: auto;
  display: inline-flex;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  min-width: 116px;
  justify-content: flex-end;
}

.progress-bar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 18px;
}

.timeline {
  --progress: 0%;
  width: 100%;
  height: 12px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.timeline:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.timeline::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    linear-gradient(90deg, rgba(246, 212, 71, 0.82) var(--progress), transparent var(--progress)),
    rgba(37, 44, 54, 0.62);
}

.timeline::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    linear-gradient(90deg, rgba(246, 212, 71, 0.82) var(--progress), transparent var(--progress)),
    rgba(37, 44, 54, 0.62);
}

.timeline::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-radius: 999px;
  border: 2px solid #101317;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(246, 212, 71, 0.3);
}

.timeline::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #101317;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(246, 212, 71, 0.3);
}

.mark-markers {
  position: absolute;
  inset: 0 9px;
  pointer-events: none;
}

.mark-marker {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 22px;
  min-height: 0;
  padding: 0;
  translate: -50% -50%;
  border: 1px solid #101317;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(57, 214, 214, 0.24);
  pointer-events: auto;
}

.mark-marker.is-stopwatch {
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(239, 78, 94, 0.24);
}

.mark-marker.is-hidden {
  background: var(--muted);
  box-shadow: none;
  opacity: 0.6;
}

.tools-panel {
  border-left: 1px solid var(--line);
  background: var(--panel);
  padding: 12px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.tool-group {
  display: grid;
  gap: 7px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mark-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.tool {
  min-height: 32px;
  padding: 0 6px;
  font-size: 13px;
}

.tool.active,
.swatch.active,
.zoom-tool.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(246, 212, 71, 0.25);
}

.zoom-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 6px;
}

.zoom-tool {
  min-height: 32px;
}

.video-stage.is-zooming canvas {
  cursor: crosshair;
}

.zoom-marquee {
  position: absolute;
  display: none;
  border: 2px solid var(--accent);
  background: rgba(246, 212, 71, 0.13);
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.32);
  pointer-events: none;
  z-index: 4;
}

.zoom-marquee.active {
  display: block;
}

.swatches {
  display: flex;
  gap: 6px;
}

.style-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.swatch {
  width: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 999px;
  background: var(--swatch);
}

.range-label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  min-width: 0;
}

.range-label input {
  min-width: 0;
  width: 100%;
}

.wide {
  width: 100%;
}

.danger {
  border-color: rgba(239, 78, 94, 0.55);
  color: #ffd5da;
}

.compact {
  min-height: 32px;
  padding: 0 8px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 32px;
  min-width: 32px;
  min-height: 32px;
  padding: 0;
}

.icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  max-height: min(48vh, 520px);
  overflow: auto;
  padding-right: 2px;
}

.marks li {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.marks li.is-hidden {
  opacity: 0.58;
}

.marks span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .tools-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .marks {
    max-height: 360px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .app-shell {
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
  }

  .topbar {
    flex: 0 0 auto;
    position: relative;
    z-index: 20;
  }

  .view-switcher {
    display: none;
  }

  .workspace {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .analysis-panel {
    min-height: 0;
    overflow: auto;
    padding-bottom: 12px;
  }

  .tools-panel {
    position: relative;
    z-index: 16;
    display: none;
    max-height: min(42dvh, 320px);
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-left: 0;
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.36);
  }

  .app-shell.mobile-panel-tools .tools-panel,
  .app-shell.mobile-panel-marks .tools-panel {
    display: flex;
  }

  .app-shell.mobile-panel-tools .tools-panel {
    overflow: auto;
  }

  .app-shell.mobile-panel-tools .zoom-tool,
  .app-shell.mobile-panel-tools #resetZoom {
    display: none;
  }

  .app-shell.mobile-panel-tools .marks-group,
  .app-shell.mobile-panel-marks .tools-group,
  .app-shell.mobile-panel-marks .style-group {
    display: none;
  }

  .app-shell.mobile-panel-marks .tools-panel {
    overflow: hidden;
  }

  .app-shell.mobile-panel-marks .marks-group {
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .app-shell.mobile-panel-marks .marks {
    max-height: none;
    min-height: 0;
    overflow: auto;
  }

  .mobile-footer {
    position: relative;
    z-index: 20;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #151920;
  }

  .mobile-zoom-stack {
    position: relative;
    display: grid;
    min-width: 0;
  }

  .mobile-action {
    min-width: 0;
    min-height: 42px;
    padding: 0 2px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font-size: 10px;
  }

  .mobile-action.active,
  .mobile-action[aria-pressed="true"] {
    background: #222832;
    color: var(--accent);
  }

  .mobile-action:disabled {
    opacity: 0.35;
  }

  .mobile-reset-popover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 22;
    min-height: 34px;
    padding: 0 12px;
    transform: translateX(-50%);
    border-color: rgba(246, 212, 71, 0.65);
    background: #222832;
    color: var(--accent);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
  }

  .help-view {
    position: fixed;
    inset: 0;
    z-index: 40;
    padding: 12px;
    background: var(--bg);
  }

  .help-content {
    height: 100%;
    overflow: auto;
  }

  .help-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 10px;
    background: var(--bg);
  }
}

@media (max-width: 560px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand-area {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .view-switcher {
    align-self: flex-start;
  }

  .view-tab {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .source-controls {
    flex-wrap: wrap;
    min-width: 0;
  }

  .export-actions button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .export-icon {
    width: 30px;
    min-height: 34px;
  }

  h1 {
    font-size: 18px;
  }

  .topbar p {
    font-size: 12px;
  }

  .has-video .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .has-video .brand-area {
    min-width: 0;
  }

  .has-video .source-controls {
    min-width: 0;
    justify-content: flex-end;
  }

  .has-video .topbar p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .analysis-panel {
    padding: 8px;
  }

  .help-view {
    padding: 12px;
  }

  .help-content {
    gap: 12px;
  }

  .privacy-note,
  .help-section {
    padding: 12px;
  }

  .help-section dl {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .help-section dd + dt {
    margin-top: 8px;
  }

  .video-stage {
    min-height: 52dvh;
    height: 52dvh;
  }

  .video-stage.is-portrait {
    height: 58dvh;
    min-height: 0;
    width: min(100%, calc(58dvh * var(--video-aspect)));
  }

  .playback-overlay {
    width: min(360px, calc(100% - 12px));
    bottom: 6px;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
  }

  .playback-overlay.is-positioned {
    width: min(360px, calc(100% - 16px));
  }

  .overlay-drag-handle {
    min-height: 48px;
  }

  .progress-bar {
    min-height: 18px;
  }

  .timeline {
    height: 12px;
  }

  .timeline::-webkit-slider-runnable-track {
    height: 6px;
  }

  .timeline::-moz-range-track {
    height: 6px;
  }

  .timeline::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    margin-top: -4px;
  }

  .timeline::-moz-range-thumb {
    width: 12px;
    height: 12px;
  }

  .mark-marker {
    width: 7px;
    height: 16px;
  }

  .transport {
    display: grid;
    grid-template-columns: auto minmax(72px, 1fr) auto auto auto auto auto;
    gap: 5px;
  }

  .transport button,
  .transport select {
    min-width: 0;
    min-height: 30px;
    padding: 0 5px;
    font-size: 12px;
  }

  #backFrames,
  #forwardFrames,
  #muteToggle {
    width: 30px;
  }

  .time-readout {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    min-width: 0;
    justify-content: center;
    font-size: 11px;
  }

  .tools-panel {
    padding: 8px;
    gap: 8px;
  }

  .tool-group {
    gap: 7px;
  }

  .segmented {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .tool {
    min-height: 30px;
    padding: 0 5px;
    font-size: 12px;
  }

  .zoom-tool {
    min-height: 30px;
  }

  .swatches {
    gap: 6px;
  }

  .style-row {
    gap: 8px;
  }

  .swatch {
    width: 28px;
    min-height: 28px;
  }

  .marks {
    max-height: 220px;
    gap: 5px;
  }

  .marks li {
    gap: 5px;
    padding: 5px;
  }

  .icon-button {
    width: 28px;
    min-width: 28px;
    min-height: 28px;
  }

  .icon-button svg {
    width: 15px;
    height: 15px;
  }
}
