:root{
  --gold:#d4af37;
  --gold-bright:#ffdf00;
  --dark:#0a0a0a;
  --panel:rgba(15,15,15,.98);
  --border:rgba(212,175,55,.3);
  --accent:#ff4444;
  --shadow:0 10px 40px rgba(0,0,0,.8);
  --shadow-soft:0 5px 15px rgba(0,0,0,.6);
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:12px;
  --header-h:60px;
  --mobile-sheet-h:28vh;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  min-height:100vh;
  font-family:Segoe UI,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--dark);
  color:#eee;
  overflow:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.page-home{
  overflow-x:hidden;
  overflow-y:auto;
  line-height:1.6;
}

a{color:inherit}
button,input,select,textarea{font:inherit}
button{cursor:pointer;border:none}

/* Shared header/nav */
.desktop-header,
.mobile-header,
header.site-header{
  background:var(--panel);
  border-bottom:1px solid var(--border);
  position:relative;
  z-index:1000;
}

.desktop-header,
header.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 2rem;
}

header.site-header{
  position:sticky;
  top:0;
}

.header-logo{
  font-size:1.5rem;
  font-weight:900;
  color:var(--gold);
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing:2px;
}

.header-nav,
.mobile-header-nav{
  display:flex;
  align-items:center;
  gap:1rem;
}

.header-nav{gap:2rem}

.header-nav a,
.mobile-header-nav a{
  color:#aaa;
  text-decoration:none;
  font-weight:700;
  text-transform:uppercase;
  transition:color .2s ease,opacity .2s ease;
}

.header-nav a{font-size:.9rem}
.mobile-header-nav a{font-size:.72rem}

.header-nav a:hover,
.header-nav a.active,
.mobile-header-nav a:hover,
.mobile-header-nav a.active{
  color:var(--gold-bright);
}

.mobile-header{display:none}

/* Shared buttons */
.tool-btn{
  width:100%;
  padding:12px;
  margin-top:10px;
  background:#222;
  border:1px solid var(--border);
  color:#888;
  border-radius:6px;
  cursor:pointer;
  font-weight:700;
  font-size:11px;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease,transform .2s ease,opacity .2s ease;
  box-sizing:border-box;
}

.tool-btn:hover{transform:translateY(-1px)}
.tool-btn.active{background:var(--gold);color:#000;border-color:var(--gold-bright)}
.tool-btn.active-cyan{background:#0ff;color:#000;border-color:#fff}
.tool-btn.tool-btn-cyan{border-color:#00ffff;color:#00ffff}
.tool-btn:disabled{
  opacity:.35;
  cursor:not-allowed;
  transform:none;
}

.return-btn{
  background:var(--gold);
  color:#000;
  padding:8px 15px;
  border-radius:4px;
  font-weight:700;
  font-size:10px;
  margin-top:10px;
  cursor:pointer;
  text-transform:uppercase;
  transition:background-color .2s ease, transform .2s ease;
}

.return-btn:hover{background:var(--gold-bright)}
.return-btn:active{transform:translateY(1px)}

/* Shared mobile nav */
.mobile-nav{
  display:none;
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  justify-content:space-around;
  padding:10px 0 calc(10px + env(safe-area-inset-bottom));
  background:rgba(15,15,15,.98);
  border-top:1px solid var(--border);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.mobile-nav a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  color:#888;
  text-decoration:none;
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  transition:color .2s ease;
}

.mobile-nav a.active,
.mobile-nav a:hover{
  color:var(--gold);
}

.mobile-nav-icon{font-size:1.2rem}

/* Homepage */
.hero{
  position:relative;
  min-height:80vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:2rem;
  background:
    linear-gradient(rgba(10,10,10,.8),rgba(10,10,10,.95)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%230a0a0a"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23333" stroke-width="0.5"/></svg>');
}

.title{
  font-size:clamp(2.5rem,5vw,4rem);
  font-weight:900;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:4px;
  margin:0;
  text-shadow:0 0 20px rgba(212,175,55,.3);
}

.subtitle{
  font-size:1.2rem;
  color:#aaa;
  max-width:600px;
  margin:1.5rem 0 3rem;
}

.cta-btn{
  background:var(--gold);
  color:#000;
  text-decoration:none;
  padding:1rem 3rem;
  font-size:1.2rem;
  font-weight:700;
  border-radius:8px;
  text-transform:uppercase;
  letter-spacing:1px;
  transition:.3s;
  box-shadow:0 0 30px rgba(212,175,55,.4);
  display:inline-block;
}

.cta-btn:hover{
  background:var(--gold-bright);
  box-shadow:0 0 50px rgba(255,223,0,.6);
  transform:translateY(-2px);
}

.features{
  padding:5rem 2rem 8rem;
  max-width:1200px;
  margin:0 auto;
}

.section-title{
  text-align:center;
  color:var(--gold);
  font-size:2.5rem;
  margin-bottom:4rem;
  text-transform:uppercase;
  letter-spacing:2px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:3rem;
}

.feature-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
  padding:2rem;
  transition:.3s;
}

.feature-card:hover{
  border-color:var(--gold);
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(212,175,55,.1);
}

.img-placeholder{
  width:100%;
  height:200px;
  background:#1a1a1a;
  border-radius:8px;
  margin-bottom:1.5rem;
  border:1px dashed #333;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#555;
  font-family:monospace;
  font-size:14px;
  overflow:hidden;
}

.img-placeholder img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.feature-title{
  color:var(--gold);
  font-size:1.5rem;
  margin-bottom:1rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:.75rem;
}

.pro-badge,
.free-badge{
  padding:4px 8px;
  border-radius:4px;
  font-size:.7rem;
  font-weight:700;
  white-space:nowrap;
}

.pro-badge{
  background:rgba(0,255,255,.1);
  color:#00ffff;
  border:1px solid #00ffff;
}

.free-badge{
  background:rgba(212,175,55,.12);
  color:var(--gold-bright);
  border:1px solid rgba(212,175,55,.35);
}

.feature-desc{
  color:#aaa;
  font-size:.95rem;
}

.pricing{
  background:#111;
  padding:5rem 2rem;
}

.pricing-container{
  max-width:800px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
}

.price-card{
  background:var(--panel);
  border:1px solid #333;
  border-radius:12px;
  padding:3rem 2rem;
  text-align:center;
}

.price-card.pro{
  border-color:var(--gold);
  box-shadow:0 0 30px rgba(212,175,55,.1);
  position:relative;
  transform:scale(1.05);
}

.price{
  font-size:3rem;
  color:#fff;
  font-weight:700;
  margin:1.5rem 0;
}

.price span{
  font-size:1rem;
  color:#888;
}

.page-home ul{
  list-style:none;
  padding:0;
  text-align:left;
  margin:2rem 0;
}

.page-home li{
  margin-bottom:1rem;
  color:#ccc;
  padding-left:1.5rem;
  position:relative;
}

.page-home li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
}

footer{
  text-align:center;
  padding:2rem 2rem 6rem;
  border-top:1px solid #333;
  color:#666;
  font-size:.9rem;
}

/* Map page */
#map{
  position:absolute;
  top:var(--header-h);
  bottom:0;
  width:100%;
}

.interface-overlay{
  position:absolute;
  top:80px;
  left:20px;
  width:280px;
  max-height:calc(100vh - 100px);
  overflow-y:auto;
  padding:20px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  backdrop-filter:blur(15px);
  z-index:10;
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}

.interface-overlay::-webkit-scrollbar{width:6px}
.interface-overlay::-webkit-scrollbar-thumb{background:#333;border-radius:3px}

.menu-toggle{
  display:none;
  position:absolute;
  top:15px;
  right:15px;
  padding:8px 12px;
  border-radius:6px;
  background:var(--gold);
  color:#000;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  box-shadow:var(--shadow-soft);
  z-index:20;
}

#mobile-tab-btn{
  display:none;
  position:fixed;
  left:50%;
  bottom:calc(var(--mobile-sheet-h) + 8px);
  transform:translateX(-50%);
  width:52px;
  height:38px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--panel);
  color:#fff;
  font-size:20px;
  line-height:38px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,.8);
  z-index:1001;
}

.locate-btn{
  position:absolute;
  right:20px;
  bottom:40px;
  width:44px !important;
  height:44px !important;
  padding:0 !important;
  margin-top:0 !important;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border) !important;
  border-radius:50% !important;
  box-shadow:var(--shadow-soft) !important;
  font-size:20px !important;
  z-index:10;
}

.maplibregl-ctrl-top-right{
  top:80px !important;
  right:15px !important;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.maplibregl-ctrl-group{
  overflow:hidden;
  background-color:var(--panel) !important;
  border:1px solid var(--border) !important;
  border-radius:8px !important;
  box-shadow:var(--shadow-soft) !important;
}

.maplibregl-ctrl-group button{
  width:36px !important;
  height:36px !important;
  border-bottom:1px solid rgba(212,175,55,.2) !important;
  background-color:transparent !important;
  transition:background-color .2s ease;
}

.maplibregl-ctrl-group button:last-child{border-bottom:none !important}
.maplibregl-ctrl-group button:hover{background-color:rgba(212,175,55,.15) !important}
.maplibregl-ctrl-icon{filter:invert(.8) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.2) !important}

h1{
  margin:0;
  font-size:20px;
  font-weight:800;
  color:var(--gold);
  letter-spacing:2px;
}

.layer-control{
  background:rgba(255,255,255,.03);
  border-radius:6px;
  padding:10px;
  margin-bottom:8px;
  border:1px solid rgba(255,255,255,.05);
}

.label-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:8px;
}

.label-text{
  font-size:12px;
  font-weight:600;
  color:#ccc;
  display:flex;
  align-items:center;
}

.label-text-accent{color:var(--gold-bright)}

.info-icon{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#444;
  color:#aaa;
  font-size:9px;
  cursor:pointer;
  margin-left:6px;
  font-weight:700;
  transition:background-color .2s ease,color .2s ease;
}

.info-icon:hover{background:var(--gold);color:#000}

.info-box{
  display:none;
  font-size:10px;
  color:#aaa;
  background:rgba(0,0,0,.4);
  padding:8px;
  border-radius:4px;
  margin-bottom:8px;
  border-left:2px solid var(--gold);
  line-height:1.4;
}

.switch{
  position:relative;
  display:inline-block;
  width:34px;
  height:20px;
}

.switch input{
  opacity:0;
  width:0;
  height:0;
}

.slider{
  position:absolute;
  cursor:pointer;
  inset:0;
  background-color:#333;
  transition:.4s;
  border-radius:20px;
}

.slider::before{
  position:absolute;
  content:"";
  height:14px;
  width:14px;
  left:3px;
  bottom:3px;
  background-color:#fff;
  transition:.4s;
  border-radius:50%;
}

input:checked + .slider{background-color:var(--accent)}
input:checked + .slider::before{transform:translateX(14px)}

.value-toggle-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.value-readout{
  font-size:10px;
  color:var(--gold);
  transition:opacity .3s ease;
  opacity:.2;
}

input[type=range]{
  width:100%;
  height:4px;
  background:#333;
  -webkit-appearance:none;
  appearance:none;
  outline:0;
  border-radius:2px;
  transition:.3s;
}

input[type=range]:disabled{
  opacity:.2;
  cursor:not-allowed;
}

input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:12px;
  height:12px;
  background:var(--gold);
  border-radius:50%;
  cursor:pointer;
}

#bounds-warning{
  position:absolute;
  top:100px;
  left:50%;
  transform:translateX(-50%);
  display:none;
  z-index:20;
  padding:0;
  background:transparent;
  color:#ccc;
  font-size:11px;
  font-weight:700;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:1px;
  backdrop-filter:none;
}

.bounds-warning-card{
  max-width:min(420px,90vw);
  padding:15px 20px;
  background:rgba(20,20,20,.95);
  border:1px solid rgba(255,68,68,.5);
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.8);
  backdrop-filter:blur(10px);
}

#bounds-warning strong{
  display:block;
  color:#f44;
  font-size:13px;
  margin-bottom:5px;
}

#bounds-warning p{
  margin:0;
  line-height:1.45;
  text-transform:none;
  font-weight:600;
}

.marker-gully{
  width:10px;
  height:10px;
  background-color:#f44;
  border-radius:50%;
  border:2px solid #222;
  cursor:pointer;
}
.marker-easter-egg{
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:transparent;
  border:none;
}

.marker-easter-egg::after{
  content:"❓";
  font-size:30px;
  line-height:1;
  filter:drop-shadow(0 0 6px rgba(255,223,0,.45));
}
.elev-popup .maplibregl-popup-content{
  background:rgba(20,20,20,.95);
  border:1px solid var(--gold);
  border-radius:6px;
  padding:5px 10px;
  box-shadow:0 5px 15px rgba(0,0,0,.8);
}

.elev-popup .maplibregl-popup-tip{border-top-color:var(--gold)}

.disclaimer-modal{
  display:flex;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.8);
  z-index:9999;
  justify-content:center;
  align-items:center;
  backdrop-filter:blur(5px);
  padding:1rem;
}

.disclaimer-card{
  background:var(--panel);
  border:1px solid var(--gold);
  border-radius:12px;
  padding:25px;
  max-width:400px;
  width:min(90vw,400px);
  box-shadow:0 10px 50px rgba(0,0,0,.9);
  text-align:center;
}

.disclaimer-card h2{
  color:#00ffff;
  margin:0 0 .75rem;
  text-transform:uppercase;
  font-size:18px;
  letter-spacing:1px;
}

.disclaimer-card p{
  font-size:13px;
  color:#ccc;
  text-align:left;
  line-height:1.5;
  margin:0 0 15px;
}

.disclaimer-card ul{
  font-size:12px;
  color:#aaa;
  text-align:left;
  padding-left:20px;
  margin:0 0 20px;
  line-height:1.6;
  list-style:disc;
}

.disclaimer-card li{
  margin-bottom:8px;
  padding-left:0;
  position:static;
}

.disclaimer-card li::before{content:none}

.disclaimer-card strong{color:#fff}

.disclaimer-accept{
  width:100%;
  background:var(--gold);
  color:#000;
  border:none;
  font-size:13px;
  padding:12px;
  border-radius:6px;
  font-weight:700;
}

.accent-line{border-left:2px solid #00ffff}

.pro-upsell{
  display:none;
  font-size:10px;
  color:var(--gold);
  margin-top:12px;
  line-height:1.6;
  background:rgba(20,20,20,.6);
  padding:10px;
  border-radius:6px;
  border:1px solid rgba(212,175,55,.2);
}

.pro-upsell strong{color:var(--gold-bright)}

.pro-upsell-btn{
  margin-top:8px;
  background:var(--gold);
  color:#000;
  border:none;
  padding:6px 14px;
  border-radius:4px;
  font-weight:700;
  font-size:10px;
  cursor:pointer;
  width:100%;
  transition:background-color .2s ease;
}

.pro-note{
  font-size:8px;
  color:#00ffff;
  text-align:center;
  margin-top:5px;
  font-style:italic;
}

.chart-parent{margin-top:15px}

.chart-container{
  display:none;
  flex-direction:column;
  flex:1;
  width:100%;
  min-height:200px;
  box-sizing:border-box;
  background:rgba(0,0,0,.5);
  padding:10px;
  border-radius:8px;
  border:1px solid var(--border);
}

.chart-frame{
  flex:1;
  position:relative;
  min-height:0;
  width:100%;
}

.chart-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:8px;
  gap:12px;
}

.verdict-text{
  font-size:10px;
  color:var(--gold-bright);
  font-weight:700;
  text-transform:uppercase;
}

.chart-actions{
  display:flex;
  gap:8px;
}

.chart-btn{
  border:none;
  padding:4px 8px;
  border-radius:4px;
  cursor:pointer;
  font-size:9px;
  font-weight:700;
}

.chart-btn-primary{
  background:var(--gold);
  color:#000;
}

.chart-btn-danger{
  background:#ff4444;
  color:#fff;
}

.popout-btn{
  display:none;
  border-color:var(--gold);
  margin-top:10px;
}

.floating-window,
.floating-3d-window{
  display:none;
  position:absolute;
  top:80px;
  left:50px;
  background:var(--panel);
  border-radius:8px;
  box-shadow:0 10px 40px rgba(0,0,0,.9);
  resize:both;
  overflow:hidden;
  flex-direction:column;
}

.floating-window{
  width:350px;
  height:250px;
  min-width:280px;
  min-height:220px;
  border:1px solid var(--gold-bright);
  z-index:100;
}

.floating-3d-window{
  top:100px;
  width:600px;
  height:550px;
  min-width:300px;
  min-height:300px;
  border:1px solid #00ffff;
  z-index:101;
}

.floating-window-header,
.floating-3d-header{
  height:30px;
  background:#1a1a1a;
  cursor:move;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 10px;
  font-size:11px;
  font-weight:700;
}

.floating-window-header{
  color:var(--gold);
  border-bottom:1px solid var(--border);
}

.floating-3d-header{
  color:#00ffff;
  border-bottom:1px solid #00ffff;
}

.floating-window-close{
  background:none;
  border:none;
  color:#aaa;
  cursor:pointer;
  font-size:16px;
  font-weight:700;
}

.floating-window-content{
  flex:1;
  padding:0;
  position:relative;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  box-sizing:border-box;
}

.plotly-div{
  flex:1;
  width:100%;
  height:100%;
  box-sizing:border-box;
  display:block;
}

/* Responsive */
@media (max-width:768px){
  .title{
    font-size:2.5rem;
    letter-spacing:2px;
  }

  .features,
  .pricing{
    padding-left:1rem;
    padding-right:1rem;
  }

  .pricing-container{grid-template-columns:1fr}
  .price-card.pro{transform:none}
  .header-nav{display:none}
  .mobile-nav{display:flex}
  .feature-grid{grid-template-columns:1fr;gap:1.25rem}

  .feature-title{
    font-size:1.25rem;
    align-items:flex-start;
    flex-direction:column;
  }

  .cta-btn{
    width:100%;
    max-width:320px;
  }

  .desktop-header{display:none !important}
  .mobile-header{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
    padding:.85rem 1rem;
    height:60px;
  }

  .mobile-header-nav{gap:.75rem}
  .mobile-header-nav a{font-size:.64rem}

  #map{
    top:60px !important;
    bottom:0 !important;
  }

  #mobile-tab-btn{display:block}
  .menu-toggle{
    display:block;
    top:12px;
    right:12px;
  }

  .interface-overlay{
    top:auto;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    max-height:var(--mobile-sheet-h);
    min-height:240px;
    padding:18px 16px 22px;
    border-left:none;
    border-right:none;
    border-bottom:none;
    border-radius:16px 16px 0 0;
    box-shadow:0 -10px 28px rgba(0,0,0,.9);
  }

  .interface-overlay.collapsed{
    transform:translateY(calc(100% - 46px));
  }

  .layer-control{
    padding:12px;
    margin-bottom:10px;
  }

  .tool-btn{
    padding:13px;
    margin-top:12px;
    min-height:44px;
  }

  .subtitle{margin-bottom:18px}
  #bounds-warning{
    top:76px !important;
    width:min(90vw,420px) !important;
  }

  .maplibregl-ctrl-top-right{top:78px !important}
  .maplibregl-ctrl-bottom-right{margin-bottom:calc(var(--mobile-sheet-h) + 18px) !important}
  .locate-btn{bottom:calc(var(--mobile-sheet-h) + 26px) !important}
}

@media (max-width:900px) and (orientation:landscape){
  .mobile-nav{
    bottom:0;
    top:0;
    left:0;
    width:70px;
    height:100vh;
    flex-direction:column;
    border-top:none;
    border-right:1px solid var(--border);
    padding:0;
  }

  .features,
  .pricing,
  footer{
    padding-left:80px;
    padding-bottom:2rem;
  }

  .hero{padding-left:80px}

  .mobile-header{
    display:flex !important;
    height:54px;
    padding:.7rem .9rem;
  }

  .mobile-header-nav a{font-size:.66rem}

  #map{
    top:54px !important;
    bottom:0 !important;
  }

  .interface-overlay{
    top:64px;
    bottom:10px;
    left:10px;
    width:min(300px,calc(100vw - 20px));
    max-height:calc(100vh - 74px);
    min-height:0;
    padding:18px 14px 16px;
    border:1px solid var(--border);
    border-radius:12px;
  }

  .interface-overlay.collapsed{
    transform:translateX(-120%);
  }

  #mobile-tab-btn{
    top:84px;
    bottom:auto;
    left:0;
    transform:none;
    width:44px;
    height:44px;
    line-height:44px;
    border-left:none;
    border-radius:0 8px 8px 0;
  }

  .maplibregl-ctrl-bottom-right{margin-bottom:16px !important}
  .locate-btn{bottom:26px !important}
}

@media (max-width:600px){
  .mobile-header{padding:.75rem .85rem}
  .header-logo{
    font-size:1.1rem;
    letter-spacing:1.5px;
  }

  .mobile-header-nav{gap:.75rem}
  .mobile-header-nav a{font-size:.64rem}

  #floating-3d-window{
    left:0 !important;
    right:0 !important;
    top:auto !important;
    bottom:calc(var(--mobile-sheet-h) + 10px) !important;
    width:100vw !important;
    height:52vh !important;
    min-width:0 !important;
    min-height:240px !important;
    border-radius:14px 14px 0 0 !important;
    resize:none !important;
    flex-direction:column;
  }

  #f3d-header{
    height:44px !important;
    padding:0 14px !important;
    font-size:10px !important;
    flex-shrink:0;
  }

  #plotly-div{
    touch-action:none;
    flex:1;
    min-height:0;
  }
}