/* ── Oracle v3.4 — Base Styles ──────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F4F5F8;
  color: #1A1033;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout Shell ─────────────────────────────────────────────────────── */

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

/* ── Sidebar (DARK brand panel) ── */
.sidebar {
  width: 256px;           /* wider — matches Oracle reference */
  min-height: 100vh;
  background: #1A1033;     /* deep purple — same as reference */
  position: fixed;
  top: 3px; left: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

/* Gradient strip at very top of sidebar (flush) */

/* Logo area */
.sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(139,124,170,0.2);
  gap: 2px;
}

.sidebar-logo-name {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sidebar-logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: #8B7FAA;
  letter-spacing: 0.5px;
}

/* Navigation */
.sidebar-nav {
  flex: 1;
  padding: 8px 0;
}

.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #6B5A8A;
  padding: 14px 18px 5px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  color: #C8C0E0;
  text-decoration: none;
  font-size: 14px;          /* larger — matches Oracle */
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}

.sidebar-item:hover {
  background: rgba(100,70,150,0.2);
  color: #FFFFFF;
  border-left-color: rgba(100,70,150,0.5);
}

.sidebar-item.active {
  background: rgba(100,70,150,0.35);
  color: #FFFFFF;
  border-left-color: #EF609C;   /* pink accent on active — matches Oracle */
  font-weight: 700;
}

.sidebar-item .icon {
  font-size: 16px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-item .badge {
  margin-left: auto;
  background: #EF609C;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
}

/* Sidebar footer / user */
.sidebar-footer {
  padding: 12px 14px;
  border-top: 1px solid rgba(139,124,170,0.2);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.sidebar-user:hover { background: rgba(100,70,150,0.2); }

.sidebar-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EF609C, #644696);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.sidebar-user-name {
  font-size: 13px;
  font-weight: 600;
  color: #E8E4F0;
  line-height: 1.3;
}

.sidebar-user-role {
  font-size: 11px;
  color: #8B7FAA;
}

/* ── Main (right of sidebar) ── */
.main {
  margin-left: 256px;     /* matches sidebar width */
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Top Bar ── */
.topbar {
  height: 60px;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 3px;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Small QBIS icon in topbar — left of nav */
.topbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 32px;
  flex-shrink: 0;
  text-decoration: none;
}

.topbar-brand-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #EF609C, #644696);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.topbar-brand-text {
  font-size: 14px;
  font-weight: 700;
  color: #1A1033;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.topbar-link {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #6B6080;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}

.topbar-link:hover {
  color: #1A1033;
  background: #F4F5F8;
}

.topbar-link.active {
  color: #644696;
  background: #EDE8F5;
  font-weight: 700;
}

/* Search bar */
.topbar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F4F5F8;
  border: 1px solid #E2E4EC;
  border-radius: 8px;
  padding: 7px 12px;
  width: 220px;
  cursor: pointer;
  transition: all 0.15s;
  margin-right: 12px;
}

.topbar-search:hover { border-color: #644696; }

.topbar-search-text {
  font-size: 13px;
  color: #9B98AF;
  flex: 1;
}

.topbar-search-kbd {
  font-size: 11px;
  color: #9B98AF;
  background: #fff;
  border: 1px solid #E2E4EC;
  border-radius: 4px;
  padding: 1px 5px;
  font-family: inherit;
}

/* Topbar right actions */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.topbar-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #6B6080;
  transition: all 0.15s;
  text-decoration: none;
  position: relative;
}

.topbar-icon-btn:hover {
  background: #F4F5F8;
  color: #1A1033;
}

.topbar-icon-btn .dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #EF4444;
  border: 1.5px solid #fff;
}

/* AI status pill (top-right) */
.ai-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 6px;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.ai-status-pill:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.ai-active {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #10B981;
}
.ai-trial {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #F59E0B;
}
.ai-locked {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #EF4444;
  animation: ai-pulse 2s infinite;
}
@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
}

.topbar-divider {
  width: 1px;
  height: 24px;
  background: #E2E4EC;
  margin: 0 6px;
}

.topbar-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
  text-decoration: none;
}

.topbar-profile:hover { background: #F4F5F8; }

.topbar-profile-name {
  font-size: 13px;
  font-weight: 500;
  color: #1A1033;
}

.topbar-profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EF609C, #644696);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* ── Page Content ── */
.page-content {
  flex: 1;
  padding: 24px;
  background: #F4F5F8;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  color: #1A1033;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-subtitle {
  font-size: 13px;
  color: #9B98AF;
  margin-top: 3px;
}

/* ── Cards ── */
.card {
  background: #FFFFFF;
  border: 1px solid #E2E4EC;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #F0F1F4;
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  color: #1A1033;
}

.card-body { padding: 16px; }

/* ── KPI Cards ── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.kpi-card {
  background: #FFFFFF;
  border: 1px solid #E2E4EC;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
}

.kpi-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #644696;
  transform: translateY(-1px);
}

.kpi-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9B98AF;
  margin-bottom: 8px;
}

.kpi-value {
  font-size: 26px;
  font-weight: 800;
  color: #1A1033;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.kpi-change {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

.kpi-change.up { color: #10B981; }
.kpi-change.down { color: #EF4444; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: #644696; color: #fff; border-color: #644696; }
.btn-primary:hover { background: #533B7D; }

.btn-secondary { background: #fff; color: #1A1033; border-color: #E2E4EC; }
.btn-secondary:hover { background: #F4F5F8; border-color: #644696; }

.btn-ghost { background: transparent; color: #6B6080; border-color: transparent; }
.btn-ghost:hover { background: #F4F5F8; color: #1A1033; }

.btn-sm { padding: 5px 11px; font-size: 12px; }

/* ── Form Elements ── */
.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #6B6080;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #E2E4EC;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  color: #1A1033;
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #644696;
  box-shadow: 0 0 0 3px rgba(100,70,150,0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B98AF' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

/* ── Data Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #9B98AF;
  padding: 8px 12px;
  border-bottom: 2px solid #E2E4EC;
  white-space: nowrap;
}

.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #F0F1F4;
  color: #1A1033;
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: #F4F5F8; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.badge-success { background: #ECFDF5; color: #10B981; }
.badge-warning { background: #FFFBEB; color: #F59E0B; }
.badge-danger  { background: #FEF2F2; color: #EF4444; }
.badge-purple  { background: #EDE8F5; color: #644696; }

/* ── Tabs ── */
.tabs {
  display: flex;
  gap: 2px;
  border-bottom: 2px solid #E2E4EC;
  margin-bottom: 20px;
}

.tab {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #9B98AF;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}

.tab:hover { color: #1A1033; }

.tab.active {
  color: #644696;
  border-bottom-color: #644696;
  font-weight: 700;
}

/* ── Overlay ── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 16, 51, 0.5);
  backdrop-filter: blur(3px);
}

.overlay.open { display: block; }

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #1A1033;
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  max-width: 340px;
}

#toast.show { display: flex; }
#toast.success { background: #10B981; }
#toast.error   { background: #EF4444; }
#toast.info    { background: #644696; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #E2E4EC; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #9B98AF; }

/* ============================================================
   RESPONSIVE — Tablet (≤1024px) + Mobile (≤768px)
   ============================================================ */

/* Hamburger button (hidden on desktop) */
.topbar-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1A1033;
  padding: 6px 10px;
  margin-right: 8px;
  border-radius: 6px;
  line-height: 1;
}
.topbar-hamburger:hover { background: #F4F5F8; }

/* Sidebar close button (hidden on desktop) */
.sidebar-close {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #C8C0E0;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.sidebar-close:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* Backdrop for sidebar (mobile/tablet) */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,16,51,0.5);
  backdrop-filter: blur(2px);
  z-index: 99;
}
.sidebar-backdrop.open { display: block; }

/* ────────────────────────────────────────────────────────────
   TABLET  (max-width: 1024px)  — iPad portrait, small tablets
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Sidebar collapses to drawer */
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    width: 280px;
    z-index: 101;
    box-shadow: 4px 0 24px rgba(0,0,0,0.25);
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-close { display: block; }

  /* Main content takes full width */
  .main { margin-left: 0; }

  /* Show hamburger */
  .topbar-hamburger { display: inline-flex; align-items: center; }

  /* Topbar nav: hide labels on tablet — keep icons only OR collapse to scroll */
  .topbar-nav {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .topbar-nav::-webkit-scrollbar { display: none; }
  .topbar-link {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Topbar search: smaller */
  .topbar-search-text,
  .topbar-search-kbd { display: none; }
  .topbar-search { padding: 0 10px; width: 38px; }

  /* AI status pill: hide on tablet (it's info, not action) */
  .ai-status-pill { display: none; }

  /* Profile name: hide */
  .topbar-profile-name { display: none; }
}

/* ────────────────────────────────────────────────────────────
   MOBILE  (max-width: 768px)  — phones, portrait small tablets
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Topbar: tighter */
  .topbar { padding: 0 12px; height: 56px; gap: 8px; }
  .topbar-brand-text { display: none; }
  .topbar-brand { padding: 0; }

  /* Hide topbar nav on mobile — sidebar holds the links */
  .topbar-nav { display: none; }

  /* Overlays: full-width sheets instead of side panels */
  #chatOverlay iframe {
    width: 100vw !important;
    height: 100vh !important;
    box-shadow: none !important;
  }
  #notifOverlay > div,
  #userOverlay > div {
    width: 100vw !important;
  }
  #searchOverlay > div > div {
    width: calc(100vw - 32px) !important;
  }
}

/* ────────────────────────────────────────────────────────────
   SMALL MOBILE  (max-width: 480px)  — phones
   ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .topbar-actions { gap: 4px; }
  .topbar-icon-btn { padding: 6px; font-size: 14px; }
  .topbar-profile-avatar { width: 30px; height: 30px; font-size: 12px; }
  .topbar-hamburger { font-size: 20px; padding: 4px 8px; }
}

/* ────────────────────────────────────────────────────────────
   WIDGET LIBRARY — Real data renderers
   ──────────────────────────────────────────────────────────── */
.widget-loading,
.widget-error,
.widget-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 12px;
  color: #9B98AF;
  padding: 16px;
  text-align: center;
}
.widget-error {
  color: #EF4444;
  flex-direction: column;
  gap: 4px;
}
.widget-empty {
  font-style: italic;
  color: #9B98AF;
}

.widget-canvas-wrap {
  flex: 1;
  position: relative;
  min-height: 80px;
  margin: 4px 0;
}
.widget-canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  max-height: 220px;
}

.widget-sparkline-empty {
  font-size: 10px;
  color: #9B98AF;
  font-style: italic;
  margin-top: auto;
  padding-top: 4px;
}

.widget-table-wrap {
  flex: 1;
  overflow: auto;
  margin-top: 4px;
}
.widget-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.widget-table th {
  position: sticky;
  top: 0;
  background: #F4F5F8;
  text-align: left;
  padding: 5px 8px;
  font-weight: 600;
  color: #6B6080;
  border-bottom: 1px solid #E2E4EC;
}
.widget-table td {
  padding: 5px 8px;
  border-bottom: 1px solid #F0F1F4;
  color: #1A1033;
}
.widget-table tr:hover td {
  background: #FAFAFE;
}

.widget-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px;
  font-size: 11px;
  color: #6B6080;
}
.widget-pager button {
  border: 1px solid #E2E4EC;
  background: #fff;
  border-radius: 4px;
  padding: 3px 8px;
  cursor: pointer;
  font-family: inherit;
}
.widget-pager button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.widget-pager button:hover:not(:disabled) {
  border-color: #644696;
  color: #644696;
}

/* ────────────────────────────────────────────────────────────
   PROPERTIES PANEL (Dashboard Builder)
   ──────────────────────────────────────────────────────────── */
.props-widget-name {
  font-size: 14px;
  font-weight: 700;
  color: #1A1033;
  margin-bottom: 4px;
}
.props-widget-id {
  font-size: 11px;
  color: #9B98AF;
  margin-bottom: 16px;
  font-family: monospace;
}
.props-field {
  margin-bottom: 12px;
}
.props-field label {
  display: block;
  font-size: 11px;
  color: #6B6080;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.props-field input[type="text"],
.props-field input[type="number"],
.props-field select {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #E2E4EC;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  color: #1A1033;
  box-sizing: border-box;
}
.props-field input:focus,
.props-field select:focus {
  outline: none;
  border-color: #644696;
  box-shadow: 0 0 0 2px rgba(100,70,150,0.15);
}
.props-row {
  display: flex;
  gap: 10px;
}
.props-info {
  background: #F4F5F8;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 12px 0;
  font-size: 12px;
}
.props-info-row {
  margin-bottom: 4px;
  color: #1A1033;
}
.props-info-row strong {
  color: #6B6080;
  margin-right: 4px;
}
.props-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #E2E4EC;
}
.props-btn-primary,
.props-btn-secondary {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}
.props-btn-primary {
  background: #644696;
  color: #fff;
}
.props-btn-primary:hover {
  background: #503580;
}
.props-btn-secondary {
  background: #F4F5F8;
  color: #6B6080;
  border-color: #E2E4EC;
}
.props-btn-secondary:hover {
  background: #ECEEF1;
}

/* ── Chart panels (sales_crm_dashboard.html) ──────────────────────── */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.charts-row-secondary {
  margin-top: 8px;
}
.chart-panel-full {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #E2E4EC;
  border-radius: 12px;
  padding: 16px 20px;
}
.chart-panel-half {
  background: #fff;
  border: 1px solid #E2E4EC;
  border-radius: 12px;
  padding: 16px 20px;
}
.chart-panel-sm {
  background: #fff;
  border: 1px solid #E2E4EC;
  border-radius: 12px;
  padding: 16px 20px;
}
.chart-panel-header {
  margin-bottom: 12px;
}
.chart-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: #2D2940;
}
.vbar-svg {
  width: 100%;
  height: auto;
  display: block;
}
