:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#111b27;
  --text:#e7eef8;
  --muted:#9bb0c7;
  --line:#223247;
  --accent:#6ae4ff;
  --accent2:#b18cff;
  --good:#70ffb1;
  --warn:#ffd36a;

  --r:14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow2: 0 6px 20px rgba(0,0,0,.25);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;

  --col-left: 320px;
  --col-right: 420px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(106,228,255,.12), transparent 50%),
              radial-gradient(900px 500px at 80% 10%, rgba(177,140,255,.10), transparent 50%),
              var(--bg);
  color:var(--text);
  font-family:var(--sans);
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
code{font-family:var(--mono); font-size:.95em; color:var(--good)}

.hidden{display:none !important}

.app{
  height:100%;
  display:flex;
  flex-direction:column;
  min-height:0;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  border-bottom:1px solid var(--line);
  background: rgba(15,22,32,.6);
  backdrop-filter: blur(10px);
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:38px; height:38px;
  border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(106,228,255,.25), rgba(177,140,255,.25));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow2);
  font-weight:800;
}
.brandTitle{font-weight:800; letter-spacing:.2px}
.brandSubtitle{color:var(--muted); font-size:12px; margin-top:2px}

.topActions{display:flex; gap:10px; align-items:center}

.input{
  background: rgba(17,27,39,.75);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  outline:none;
  min-width: 160px;
}
.input:focus{border-color: rgba(106,228,255,.55); box-shadow: 0 0 0 3px rgba(106,228,255,.12)}

input[type="number"]{
  appearance: textfield;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

.btn{
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(106,228,255,.18), rgba(177,140,255,.16));
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  box-shadow: var(--shadow2);
  line-height: 1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  text-decoration:none;
}
.btn:hover{filter:brightness(1.07)}
.btn:active{transform:translateY(1px)}
.btnGhost{
  background: rgba(17,27,39,.55);
  box-shadow:none;
}
a.btn{color:var(--text)}
a.btn:hover{text-decoration:none}

.main{
  flex:1;
  min-height:0;
  display:grid;
  gap:14px;
  padding:14px;

  grid-template-columns: var(--col-left) minmax(320px, 1fr) var(--col-right);
  grid-template-areas: "sidebar content details";
}

.sidebar{ grid-area: sidebar; min-height:0; overflow:auto; padding-right: 2px; }
.content { grid-area: content; min-height:0; overflow:auto; }
.details { grid-area: details; min-height:0; overflow:auto; }

.panel{
  background: rgba(15,22,32,.72);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding:12px;
  margin-bottom:12px;
  box-shadow: var(--shadow);
}
.panelTitle{font-weight:800; margin-bottom:10px}
.field{margin-bottom:10px}
.label{display:block; color:var(--muted); font-size:12px; margin-bottom:6px}
.row{display:flex; gap:10px}
.row .input{flex:1}

.stats{color:var(--muted); font-size:13px; line-height:1.55}

.content{
  background: rgba(15,22,32,.50);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding:12px;
}

.details{
  background: rgba(15,22,32,.50);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.detailsInner{padding:14px; min-height:100%}

.inputGroup{
  display:flex;
  align-items:center;
  gap:0;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(17,27,39,.75);
  border-radius: 12px;
  overflow:hidden;
}
.inputGroupItem{
  border:none !important;
  background: transparent !important;
  box-shadow:none !important;
  min-width: 0;
  flex: 1 1 0;
}
.inputGroupItem:focus{
  border:none !important;
  box-shadow:none !important;
  outline: none;
}
.inputGroupSep{
  color: rgba(255,255,255,.25);
  padding: 0 10px;
  user-select:none;
}

.emptyCard{
  background: rgba(15,22,32,.88);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: var(--shadow2);
}
.emptyState{padding:18px}
.emptyTitle{font-weight:900; font-size:18px}
.emptyText{color:var(--muted); margin-top:8px; line-height:1.45}

.list.timeline{display:flex; flex-direction:column; gap:10px}
.list.grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap:10px;
}

.card{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(17,27,39,.70);
  border-radius: 16px;
  padding:12px;
  cursor:pointer;
  transition: transform .08s ease, border-color .08s ease, filter .08s ease;
}
.card:hover{transform: translateY(-1px); border-color: rgba(106,228,255,.35); filter: brightness(1.03)}
.card.active{border-color: rgba(106,228,255,.75); box-shadow: 0 0 0 3px rgba(106,228,255,.12)}

.cardTop{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.cardTitle{font-weight:900}
.cardMeta{color:var(--muted); font-size:12px; margin-top:6px; line-height:1.35}
.badges{display:flex; gap:6px; flex-wrap:wrap; margin-top:10px}
.badge{
  font-size:11px;
  padding:4px 8px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}
.badge.good{color:var(--good); border-color: rgba(112,255,177,.25)}
.badge.warn{color:var(--warn); border-color: rgba(255,211,106,.25)}
.badge.accent{color:var(--accent); border-color: rgba(106,228,255,.25)}
.badge.accent2{color:var(--accent2); border-color: rgba(177,140,255,.25)}

.kv{display:grid; grid-template-columns: 150px 1fr; gap:8px; margin-top:10px}
.k{color:var(--muted); font-size:12px}
.v{font-size:13px; line-height:1.45}

.detailTitle{font-weight:950; font-size:18px}
.detailSub{color:var(--muted); margin-top:6px; font-size:12px}
.section{margin-top:14px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08)}
.sectionTitle{font-weight:900; margin-bottom:8px}

.subsectionTitle{
  margin: 10px 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fileList{display:flex; flex-direction:column; gap:8px}
.fileItem{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(17,27,39,.55);
  padding:10px 12px;
  border-radius: 14px;
  flex-wrap: wrap;
}
.fileItem .fileMain{
  min-width: 0;
  flex: 1 1 260px;
}
.fileItem .fileActions{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
  flex: 0 0 auto;
  flex-wrap: wrap;
}
.fileItem .btn{ padding: 9px 11px; border-radius: 12px; }
.fileItem code{color:var(--text)}
.fileHint{
  margin-top:6px;
  line-height:1.4;
}
.small{font-size:12px; color:var(--muted)}

.modal{
  width:min(960px, 92vw);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(15,22,32,.95);
  color:var(--text);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.modal::backdrop{background: rgba(0,0,0,.55)}
.modalHead{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.modalTitle{font-weight:900}
.modalBody{padding:14px}
.modalList{margin:0; padding-left:18px; color:var(--muted); line-height:1.6}

.codeBox{
  margin:0;
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  overflow:auto;
  max-height: 70vh;
}
.codeBox code{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  white-space: pre;
}

.codeBox.isStub{
  background: rgba(255,211,106,.08);
  border-color: rgba(255,211,106,.25);
  box-shadow: 0 0 0 3px rgba(255,211,106,.06);
}
.codeBox.isStub code{
  color: var(--warn);
  white-space: pre-wrap;
}

.tasksToolbar{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.tasksList{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.taskCard{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(17,27,39,.55);
  border-radius: 14px;
  padding:12px;
}
.taskId{
  font-weight:900;
}
.taskTitle{
  color: var(--text);
  margin-left: 6px;
  font-weight: 700;
}
.taskDesc{
  margin-top:8px;
  color: var(--muted);
  line-height:1.45;
  font-size: 13px;
}

.card {
  background: #0f172a; /* тёмный, но нейтральный */
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.06);
}

.badge.good {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.badge.warn {
  background: rgba(234,179,8,0.15);
  color: #eab308;
}

.badge.accent2 {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}

.card.good { border-left: 3px solid #22c55e; }
.card.warn { border-left: 3px solid #eab308; }
.card.accent2 { border-left: 3px solid #3b82f6; }

@media (max-width: 1180px){
  :root{ --col-left: 300px; --col-right: 380px; }
  .main{
    grid-template-columns: var(--col-left) minmax(320px, 1fr);
    grid-template-areas:
      "sidebar content"
      "details details";
  }
}

@media (max-width: 860px){
  .topbar{flex-wrap:wrap; gap:10px}
  .topActions{width:100%}
  .input{min-width: 0; flex:1}
  .main{
    grid-template-columns: 1fr;
    grid-template-areas:
      "sidebar"
      "content"
      "details";
  }
}

.crossTaskNav{
  margin-bottom:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
}

.crossTaskNavLabel{
  margin-bottom:8px;
}

.crossTaskNavLinks{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.crossLangBtn{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(17,27,39,.75);
  color: var(--text);
  border-radius: 999px;
  padding:7px 11px;
  cursor:pointer;
  font-size:12px;
  transition: .12s ease;
}

.crossLangBtn:hover{
  border-color: rgba(106,228,255,.45);
  color: var(--accent);
}

.crossLangBtn.isCurrent,
.crossLangBtn:disabled{
  cursor:default;
  opacity:.9;
  border-color: rgba(106,228,255,.30);
  color: var(--accent);
  background: rgba(106,228,255,.08);
}

/* ===== Flip card UI ===== */

.flipCard{
  perspective: 2200px;
  perspective-origin: center center;
  padding: 0;
  background: transparent;
  border: none;
  min-height: 240px;
}

.flipCardInner{
  position: relative;
  width: 100%;
  min-height: 240px;
  transform-style: preserve-3d;
  transition: transform .42s cubic-bezier(.68,-0.2,.27,1.2);
  will-change: transform;
}

.flipCard.isFlipped .flipCardInner{
  transform: rotateY(180deg);
}

.flipFace{
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow2);
}

.flipFront{
  background:
    radial-gradient(500px 160px at 20% 0%, rgba(106,228,255,.10), transparent 55%),
    radial-gradient(500px 180px at 100% 100%, rgba(177,140,255,.10), transparent 55%),
    #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.flipBack{
  background: rgba(17,27,39,.92);
  transform: rotateY(180deg);
  padding: 12px;
}

.flipFrontTop{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.flipLangName{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
}

.flipLangYear{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.flipFrontCenter{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.flipLangMonogram{
  width: 92px;
  height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--text);
  background: linear-gradient(135deg, rgba(106,228,255,.16), rgba(177,140,255,.14));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.flipFrontBottom{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.flipBackHint{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  opacity: .9;
}

/* чтобы карточки по высоте не прыгали */
.list.grid .flipCard,
.list.timeline .flipCard{
  min-height: 240px;
}

.flipFront,
.flipBack{
  transform-origin: center center;
}

.flipFront{
  z-index: 2;
  transform: rotateY(0deg) translateZ(2px);
}

.flipBack{
  transform: rotateY(180deg) translateZ(2px);
}

.flipLangMonogram{
  transform: translateZ(18px);
}

.cardTitle,
.cardMeta,
.badges,
.flipBackHint{
  transform: translateZ(14px);
}

.flipCardInner,
.flipFront,
.flipBack{
  transform-style: preserve-3d;
}

.flipFace{
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flipCard:hover .flipFront{
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.flipBack .cardTitle,
.flipBack .cardMeta,
.flipBack .badges,
.flipBack .flipBackHint{
  transform: translateZ(24px);
}

.flipFront .flipLangMonogram{
  transform: translateZ(28px) scale(1.02);
}

.cardFlip{
  perspective: 1200px;
  padding: 0;
  overflow: hidden;
  min-height: 260px;
}

.cardFlipInner{
  position: relative;
  width: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.card.is-flipped .cardFlipInner{
  transform: rotateY(180deg);
}

.cardFace{
  position: absolute;
  inset: 0;
  padding: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
}

.cardFront{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.04), transparent 45%),
    rgba(17,27,39,.82);
}

.cardBack{
  transform: rotateY(180deg);
  background: rgba(17,27,39,.82);
}

.cardLogoWrap{
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardLogo{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.cardLogoFallback{
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
}

.cardFrontName{
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  text-align: center;
}

.card.good{
  border-left: 3px solid #22c55e;
}
.card.warn{
  border-left: 3px solid #eab308;
}
.card.accent2{
  border-left: 3px solid #60a5fa;
}

.cardBadgesTop{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.list.grid .cardBadgesTop .badge{
  white-space:nowrap;
}

.codeBox.isStubText{
  background: rgba(255, 211, 106, 0.08);
  border-color: rgba(255, 211, 106, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 211, 106, 0.06);
  padding: 16px;
}

.codeBox.isStubText code{
  color: #ffe08a;
  white-space: pre-wrap;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Runner UI ===== */

.runnerBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.runnerLauncherCard {
  margin-top: 14px;
  background: rgba(15,22,32,.72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 12px;
  box-shadow: var(--shadow);
}

.runnerLauncherTitle {
  font-weight: 800;
  margin-bottom: 8px;
}

.runnerLauncherText {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.runnerModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
  overflow-y: auto;
}

.runnerModalOverlay.hidden {
  display: none;
}

.runnerModal {
  width: min(920px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,22,32,.96);
  color: var(--text);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 0 0 18px 0;
}

.runnerModalHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 10px;
  flex: 0 0 auto;
}

.runnerModalTitle {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
}

.runnerModalSub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}

.runnerLangChips,
.runnerModeSwitch {
  margin: 6px 18px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.runnerLangChip,
.runnerModeBtn {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(17,27,39,.75);
  color: var(--text);
  border-radius: 999px;
  min-height: 36px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: .12s ease;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.runnerLangChip:hover,
.runnerModeBtn:hover {
  border-color: rgba(106,228,255,.45);
  color: var(--accent);
}

.runnerLangChip.active,
.runnerModeBtn.active {
  cursor: default;
  opacity: .95;
  border-color: rgba(106,228,255,.30);
  color: var(--accent);
  background: rgba(106,228,255,.08);
  box-shadow: none;
}

.runnerLangChip.disabled {
  opacity: .82;
}

label[for="runnerModalTaskSelect"],
label[for="runnerModalCode"],
label[for="runnerModalStdin"],
label[for="runnerModalFileInput"] {
  display: block;
  margin: 0 18px 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

#runnerModalTaskSelect {
  display: block;
  width: calc(100% - 36px);
  margin: 0 18px 12px;
  background: rgba(17,27,39,.75);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
  font-size: 14px;
}

#runnerModalTaskSelect:focus {
  border-color: rgba(106,228,255,.55);
  box-shadow: 0 0 0 3px rgba(106,228,255,.12);
}

#runnerModalStdinWrap,
#runnerModalFileInputWrap {
  margin-top: 2px;
}

.runnerTextarea {
  display: block;
  width: calc(100% - 36px);
  margin: 0 18px;
  resize: vertical;
  overflow: auto;
  scrollbar-gutter: stable;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(17,27,39,.75);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  box-sizing: border-box;
  outline: none;
}

.runnerTextarea:focus {
  border-color: rgba(106,228,255,.55);
  box-shadow: 0 0 0 3px rgba(106,228,255,.12);
}

.runnerTextareaLarge {
  min-height: 230px;
  max-height: 320px;
}

.runnerStdin {
  min-height: 88px;
  max-height: 160px;
}

.runnerModal .row {
  margin: 14px 18px 0;
  gap: 10px;
  flex-wrap: wrap;
}

.runnerModal .btn,
.runnerFileBtn,
#runnerModalDownloadFile {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1.2;
}

.runnerOutput {
  display: block;
  width: calc(100% - 36px);
  margin: 14px 18px 0;
  padding: 14px 16px;
  min-height: 120px;
  max-height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(17,27,39,.55);
  white-space: pre-wrap;
  word-break: break-word;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.runnerOutput,
#runnerModalFileResult {
  overflow: auto;
  scrollbar-gutter: stable;
}

.runnerResultMeta {
  margin: 10px 18px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

body.runnerModalOpen {
  overflow: hidden;
}

.runnerFileControls,
.runnerFileToolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 18px 10px;
}

.runnerFileNative {
  display: none;
}

.runnerFileBtn {
  cursor: pointer;
}

.runnerFileName,
#runnerModalFileName {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

#runnerModalFileResultWrap {
  margin: 14px 0 0;
}

#runnerModalFileResultWrap label {
  display: block;
  margin: 0 18px 8px !important;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.runnerFileResultToolbar {
  margin: 0 18px 10px;
}

#runnerModalDownloadFile {
  display: inline-flex;
  margin: 0 !important;
}

#runnerModalFileResult {
  width: calc(100% - 36px) !important;
  margin: 0 18px !important;
  min-height: 110px;
  max-height: 220px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
}