/* ===== MAIN LAYOUT ===== */

.main-layout {
  display: flex;
  gap: 20px;
  padding: 20px;
  height: 100vh;
  box-sizing: border-box;
}

/* ===== PANELS ===== */

.far-panel {
  flex: 1;
  padding: 20px;

  position: relative;
  overflow: hidden;

  background: rgba(20,20,20,0.72);

  border: none;
  outline: none;
  box-shadow: none;

  border-radius: 18px;
/*
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
*/
  z-index: 10;
}

/* ===== LEFT PANEL ===== */

.far-panel.left {
  max-width: 300px;

  display: flex;
  flex-direction: column;

  align-items: stretch;
}

/* ===== CENTER PANEL ===== */

.far-panel.center {
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
}

/* ===== RIGHT PANEL ===== */

.far-panel.right {
  max-width: 300px;

  display: flex;
  flex-direction: column;

  align-items: stretch;
}

/* ===== COMMAND DRAWER ===== */

.command-drawer {
  width: 100% !important;

  display: block !important;

  background: rgba(10,15,20,0.82) !important;

  border-radius: 18px;

  padding: 18px;

  margin-top: 14px;

  box-sizing: border-box;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 4px 20px rgba(0,0,0,0.45),
    inset 0 0 12px rgba(255,255,255,0.03);
}
/* ===== FORCE PANEL NORMALIZATION ===== */

.far-panel,
.far-panel.left,
.far-panel.center,
.far-panel.right {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.far-panel::before,
.far-panel::after {
  display: none !important;
  content: none !important;
}

.command-drawer {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ===== MAP CLEANUP ===== */

#global-map,
.globe-wrapper,
.leaflet-container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ===== FORCE PANEL NORMALIZATION ===== */

.far-panel,
.far-panel.left,
.far-panel.center,
.far-panel.right {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.far-panel::before,
.far-panel::after {
  display: none !important;
  content: none !important;
}

.command-drawer {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ===== MAP CLEANUP ===== */

#global-map,
.globe-wrapper,
.leaflet-container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ===== FINAL LAYOUT NORMALIZATION ===== */

.main-layout {
  display: flex !important;

  flex-direction: row !important;

  gap: 0 !important;

  width: 100vw !important;
  height: 100vh !important;

  margin: 0 !important;
  padding: 20px !important;

  box-sizing: border-box !important;

  overflow: hidden !important;

  background: transparent !important;
}

.metric-item {
  background: rgba(20,20,20,0.72) !important;

  border: 1px solid rgba(255,255,255,0.04) !important;

  padding: 10px 14px !important;

  border-radius: 10px !important;

  margin-bottom: 10px !important;

  display: flex !important;

  justify-content: space-between !important;

  font-size: 14px !important;
}
