/* FILE: styles.css */
:root{
  --bg: #121212;
  --card: #181818;
  --card2: #1f1f1f;
  --text: #eaeaea;
  --muted: #a7a7a7;
  --accent: #1db954;

  --radius: 18px;

  /* JS will override these so ALL keys fit with NO scrolling */
  --gap: 2px;
  --white-w: 46px;
  --white-h: 380px;
  --black-w: 30px;
  --black-h: 235px;
  --key-radius: 12px;
  --black-radius: 10px;

  /* Safe area insets for iPhone notch/status bar */
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --safe-left: env(safe-area-inset-left);
  --safe-right: env(safe-area-inset-right);
}

*{ box-sizing: border-box; }
html, body{ 
  height: 100%; 
  min-height: 100vh;
  min-height: 100dvh;
}
body{
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
}

/* Background gradient overlay */
body::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(1200px 700px at 20% 0%, #1a1a1a, var(--bg));
  z-index: -1;
  pointer-events: none;
}

/* ===== Top Bar ===== */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(12px + var(--safe-top)) 14px 10px;
  padding-left: max(14px, var(--safe-left));
  padding-right: max(14px, var(--safe-right));
  background: linear-gradient(to bottom, rgba(18,18,18,0.98), rgba(18,18,18,0.90));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.leftGroup{ display:flex; align-items:center; gap:10px; }

.brand{ display:flex; align-items:center; gap:12px; min-width: 0; }
.dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(29,185,84,0.45);
  flex: 0 0 auto;
}
.titles{ display:flex; flex-direction:column; line-height:1.1; min-width:0; }
.appname{ font-weight: 800; letter-spacing: 0.2px; white-space: nowrap; overflow:hidden; text-overflow: ellipsis; }
.subtitle{ color: var(--muted); font-size: 12px; margin-top: 4px; white-space: nowrap; overflow:hidden; text-overflow: ellipsis; }

.ghost{
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}
.ghost:hover{ background: rgba(255,255,255,0.08); }

/* ===== Layout ===== */
.wrap{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px;
  padding-top: var(--header-height, 90px);
  padding-left: max(14px, var(--safe-left));
  padding-right: max(14px, var(--safe-right));
  padding-bottom: max(12px, var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* ===== Command Deck ===== */
.commandDeck{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.deckTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.deckTitleBlock{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.deckTitle{
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 16px;
}

.memoryMeta{
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.deckRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.controlRow{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primaryControls > *{
  flex: 1 1 220px;
}

.primaryControls .transposeCluster{
  justify-content: center;
}

.deckLabel{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.bankSelector{
  display: flex;
  align-items: center;
  gap: 10px;
}

.bankBtn{
  height: 44px;
  min-width: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
}

.bankBtn:hover{ background: rgba(255,255,255,0.08); }
.bankBtn:active{ transform: translateY(1px); }

.bankBtn.bankCurrent{
  min-width: 54px;
  background: rgba(29,185,84,0.12);
  border-color: rgba(29,185,84,0.35);
  color: var(--accent);
  font-weight: 900;
  font-size: 15px;
}

.bankBtn.bankCurrent:hover{ background: rgba(29,185,84,0.18); }

.deckControls{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Calculator-style deck layout */
.calculatorDeck{
  display: grid;
  /* Use 6 equal columns so 3-button groups can each occupy 3 columns (one per button)
     which yields matching square buttons for bankSelector and transposeCluster */
  grid-template-columns: repeat(6, minmax(56px, 1fr));
  gap: 10px;
  align-items: stretch;
}

.calculatorDeck .hud{ grid-column: 1 / -1; }
.calculatorDeck .bankSelector{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; grid-column: 1 / 4; }
.calculatorDeck .transposeCluster{ display: grid; grid-template-columns: repeat(3, 1fr); gap:8px; grid-column: 4 / 7; justify-items: center; }
.calculatorDeck .octaveAltCluster{ grid-column: 1 / -1; display:flex; gap:8px; justify-content:space-between; }

.calculatorDeck .bankBtn,
.calculatorDeck .ctrl{
  aspect-ratio: 1/1;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Make primary calculator buttons slightly larger on wide screens */
@media (min-width: 700px){
  .calculatorDeck .bankBtn{ font-size: 20px; }
  .calculatorDeck .ctrl{ font-size: 20px; }
}

.deckControls .hud{
  width: 100%;
}

.cluster,
.transposeCluster{
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.secondaryControls{
  justify-content: stretch;
}

.octaveAltCluster{
  display: flex;
  flex: 1 1 220px;
  gap: 10px;
  flex-wrap: wrap;
}

.octaveAltCluster .ctrl{
  flex: 1 1 calc(25% - 8px);
  min-width: 64px;
}

.cluster .ctrl,
.transposeCluster .ctrl{
  flex: 1;
}

.hud{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0;
  border-radius: 0;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
}

.transposeCluster .ctrl{
  min-width: 0;
}

.ctrl.transposeKey{
  min-width: 54px;
  background: rgba(29,185,84,0.12);
  border-color: rgba(29,185,84,0.35);
  color: var(--accent);
  font-weight: 900;
  font-size: 15px;
  cursor: default;
  pointer-events: none;
}

.memoryStrip{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  gap: 8px;
}
.memBtn{
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.12s ease, border-color 0.12s ease;
}
.memBtn:hover{ background: rgba(255,255,255,0.08); }
.memBtn:active{ transform: translateY(1px); }
.memBtn.filled{
  border-color: rgba(29,185,84,0.35);
  background: rgba(29,185,84,0.10);
}
.memBtn.active{
  box-shadow: 0 0 0 3px rgba(29,185,84,0.35);
}

@media (max-width: 520px){
  .wrap{ padding: 8px 10px 12px; gap: 8px; }
  .commandDeck{ padding: 12px; gap: 12px; }
  .deckTop{ flex-direction: column; align-items: flex-start; }
  .deckControls{ gap: 10px; }
  .cluster,
  .transposeCluster{ gap: 8px; }
  .memoryStrip{ grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .ctrl{ height: 48px; font-size: 20px; border-radius: 14px; }
  .hud{ padding: 6px 8px; }
  .hudLabel{ font-size: 11px; }
  .hudValue{ font-size: 12px; }
  .piano{ padding: 8px 8px 10px; }
}

@media (min-width: 900px){
  .memoryStrip{ gap: 10px; }
}

.pianoScroll{
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(29,185,84,0.3) rgba(255,255,255,0.05);
}

/* Keep piano visible on scroll: make container sticky and bound height */
.pianoContainer{
  position: sticky;
  top: calc(var(--safe-top) + 84px);
  z-index: 5;
  display: block;
}

.pianoScroll{
  /* Prevent the piano from pushing entirely out of viewport on tall pages */
  max-height: calc(100vh - (var(--safe-top) + 140px));
}

/* Ensure the content after the piano doesn't sit under it */
.pianoContainer{
  margin-bottom: 10px;
}

.pianoContainer + .memoryStrip,
.pianoContainer + .memoryStrip + *{
  /* Reserve vertical space equal to piano height so following content is never obscured
     Use the `--white-h` CSS variable set by JS for responsive piano height. */
  margin-top: calc(var(--white-h, 180px) + 18px);
}

/* Visual separation so overlapping is obvious if it still occurs */
.piano{
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border-radius: 12px;
}

.pianoScroll::-webkit-scrollbar{
  height: 8px;
}

.pianoScroll::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.pianoScroll::-webkit-scrollbar-thumb{
  background: rgba(29,185,84,0.3);
  border-radius: 4px;
}

.pianoScroll::-webkit-scrollbar-thumb:hover{
  background: rgba(29,185,84,0.5);
}

.piano{
  min-width: 100%;
  width: fit-content;
  position: relative;
  height: var(--white-h);
  user-select: none;
  touch-action: manipulation;
  padding: 10px 10px 12px;
  background:
    radial-gradient(900px 260px at 50% 0%, rgba(29,185,84,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

.whiteRow{
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: var(--gap);
}

/* ===== Keys ===== */
.key{
  position: relative;
  border-radius: var(--key-radius);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.2px;
  transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.key.white{
  width: var(--white-w);
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #e8e8e8 50%, #d4d4d4);
  color: #111;
  box-shadow: 
    inset 0 -7px 15px rgba(0,0,0,0.20),
    inset 0 2px 4px rgba(255,255,255,0.7),
    0 2px 4px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.25);
  border-bottom-width: 2px;
}

.key.black{
  position: absolute;
  top: 8px;
  height: var(--black-h);
  width: var(--black-w);
  border-radius: var(--black-radius);
  background: linear-gradient(180deg, #3a3a3a, #1a1a1a 50%, #080808);
  color: #eaeaea;
  box-shadow: 
    0 12px 24px rgba(0,0,0,0.70),
    0 4px 8px rgba(0,0,0,0.50),
    inset 0 1px 2px rgba(255,255,255,0.15),
    inset 0 -10px 16px rgba(0,0,0,0.40);
  border: 1px solid rgba(0,0,0,0.85);
  border-top: 1px solid rgba(255,255,255,0.12);
  z-index: 5;
  padding-bottom: 12px;
}

.key.white:active{ transform: translateY(1px) scale(0.995); }
.key.black:active{ transform: none; }

.key.selected.white{
  background: linear-gradient(180deg, #eafff1, #bff3d1);
  box-shadow: 0 0 0 3px rgba(29,185,84,0.45), inset 0 -7px 15px rgba(0,0,0,0.15);
}

.key.selected.black{
  background: linear-gradient(180deg, #1f6b3b, #0b2d17);
  box-shadow: 0 0 0 3px rgba(29,185,84,0.45), 0 10px 20px rgba(0,0,0,0.55);
}

.key .noteLabel{
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.12s ease, transform 0.12s ease;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  max-width: 92%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.key.black .noteLabel{ background: rgba(255,255,255,0.10); }

.key.selected .noteLabel{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Controls ===== */
.ctrl{
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.12s ease, border-color 0.12s ease;
}
.ctrl:hover{ background: rgba(255,255,255,0.09); }
.ctrl:active{ transform: translateY(1px); }

.ctrl.accent{
  background: rgba(29,185,84,0.12);
  border-color: rgba(29,185,84,0.35);
}
.ctrl.accent:hover{ background: rgba(29,185,84,0.18); }

.ctrl.mini{
  height: 50px;
  border-radius: 14px;
}

.transposeCluster{
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex: 0 0 auto;
}

.transposeCluster .ctrl{
  flex: 0 0 56px;
}

.hud{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

/* When hud is moved into the header, make it horizontal and compact */
/* HUD lives in the topbar header permanently — display horizontally */
.topbar .hud{
  flex-direction: row;
  gap: 10px;
  padding: 6px 8px;
  align-items: center;
}

@media (max-width: 520px) and (orientation: landscape) {
  .brand{ align-items: center; }
  .titles{ margin-right: 8px; }
}

/* Place HUD to the right of titles when width > height (landscape),
   otherwise force HUD below the titles (portrait) */
@media (max-aspect-ratio: 1/1) {
  .brand{
    /* allow wrapping so HUD can move to its own row */
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
  }
  .brand .hud{
    order: 2;
    flex-basis: 100%;
    margin-top: 6px;
  }
  .brand .titles{
    order: 1;
    flex: 1 1 auto;
  }
}

@media (min-aspect-ratio: 1/1) {
  .brand{
    flex-wrap: nowrap;
    align-items: center;
  }
  .brand .hud{
    order: 2;
    flex-basis: auto;
    margin-top: 0;
  }
  .brand .titles{
    order: 1;
  }
}

.hudRow{
  display: flex;
  gap: 8px;
  align-items: baseline;
  min-width: 0;
}

.hudLabel{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.hudValue{
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer{
  color: var(--muted);
  font-size: 12px;
  padding: 2px 2px 0;
}

/* ===== Landscape Layout Optimizations ===== */
@media (orientation: landscape) and (max-height: 600px) {
  .topbar{
    padding: 6px 12px;
    min-height: 48px;
  }
  
  .brand{
    gap: 8px;
  }
  
  .appname{
    font-size: 14px;
  }
  
  .subtitle{
    font-size: 11px;
  }
  
  .ctrl{
    height: 46px;
  }
  
  .ctrl.mini{
    height: 42px;
  }
  .commandDeck{ padding: 10px; gap: 10px; }
  .deckControls{ gap: 8px; }
  
  .hud{
    padding: 4px 8px;
  }
  
  .hudLabel{
    font-size: 11px;
  }
  
  .hudValue{
    font-size: 12px;
  }
  .memoryStrip{ gap: 6px; }
  .memoryMeta{ font-size: 11px; }
  
  .footer{
    font-size: 11px;
  }

}


/* ===== Modals (focus-first) ===== */
.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 14px;
}
.modal[hidden]{ display: none; }

.modalOverlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

.modalCard{
  overscroll-behavior: contain;
  position: relative;
  width: min(560px, 100%);
  max-height: min(78dvh, 640px);
  overflow: auto;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(24,24,24,0.98), rgba(14,14,14,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.60);
  padding: 12px;
}

.modalHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 4px 10px;
}

.modalTitle{
  font-weight: 950;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.modalSection{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 10px;
  margin: 10px 0;
}

.modalLabel{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.modalHint{
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}

.scalePickerRow{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}

select{
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  padding: 0 10px;
  outline: none;
}

.actionRow{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hiddenFileInput{
  display: none;
}

@media (max-width: 520px){
  .modalCard{ width: 100%; max-height: 82dvh; }
  .scalePickerRow{ grid-template-columns: 1fr; }
  .actionRow{ grid-template-columns: 1fr; }
}



/* ===== Custom Prompt Modal ===== */
.promptCard{
  width: min(420px, 100%);
}

.promptInput{
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  padding: 0 14px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}

.promptInput:focus{
  border-color: rgba(29,185,84,0.45);
  background: rgba(0,0,0,0.30);
}

.promptActions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.promptActions .ghost{
  min-width: 80px;
}

.ghost.accent{
  background: rgba(29,185,84,0.18);
  border-color: rgba(29,185,84,0.35);
  color: var(--accent);
  font-weight: 700;
}

.ghost.accent:hover{
  background: rgba(29,185,84,0.25);
}

/* ===== Alternate Chords Modal ===== */
.alternatesList{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.alternateItem{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.alternateItem:hover{
  background: rgba(0,0,0,0.30);
  border-color: rgba(255,255,255,0.15);
}

.alternateChordName{
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.alternateChordDesc{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.alternateBtn{
  height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.12s ease;
}

.alternateBtn:hover{
  background: rgba(29,185,84,0.15);
  border-color: rgba(29,185,84,0.35);
}

/* ===== Help Modal ===== */
.helpCard{
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
}

.helpSectionTitle{
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.helpText{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.helpText strong{
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 520px){
  .helpCard{
    max-height: 80vh;
  }
  
  .helpSectionTitle{
    font-size: 15px;
  }
  
  .helpText{
    font-size: 13px;
  }
}

/* ===== Landscape Optimizations ===== */
@media (orientation: landscape) and (max-height: 600px) {
  .modal{
    padding: 8px;
  }
  
  .modalCard{
    width: min(680px, 95%);
    max-height: 85vh;
    padding: 8px;
    border-radius: 16px;
  }
  
  .modalSection{
    padding: 8px;
    margin: 6px 0;
    border-radius: 12px;
  }
  
  .modalHead{
    padding: 4px 4px 6px;
  }
  
  .modalTitle{
    font-size: 15px;
  }
  
  .modalLabel{
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .modalHint{
    font-size: 11px;
    margin-top: 6px;
  }
  
  .ghost{
    height: 40px;
    font-size: 13px;
  }
  
  .helpCard{
    max-height: 82vh;
  }
  
  .helpSectionTitle{
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .helpText{
    font-size: 12px;
    line-height: 1.5;
  }
  
  .promptCard{
    width: min(380px, 90%);
  }
  
  .promptInput{
    height: 40px;
    font-size: 14px;
  }
  
  .alternateItem{
    padding: 8px;
  }
  
  .alternateChordName{
    font-size: 14px;
  }
  
  .alternateChordDesc{
    font-size: 11px;
  }
  
  .alternateBtn{
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
  
  /* Make memory strip more compact in landscape */
  .memoryStrip{
    gap: 6px;
  }
  
  .memBtn{
    height: 42px;
    font-size: 12px;
  }
}
