:root {
  /* ============================================
     DESIGN SYSTEM - ADDVALORA INTELLIGENCE
     Executive Intelligence Platform
     ============================================ */

  /* CORE PALETTE - Sophisticated Neutrals with Accent */
  --color-bg-primary: #0a0b0d;
  --color-bg-secondary: #111216;
  --color-bg-tertiary: #1a1c21;
  --color-bg-elevated: #21242b;
  --color-bg-hover: #2a2d35;
  
  /* Text Colors */
  --color-text-primary: #f8f9fa;
  --color-text-secondary: #a1a5ab;
  --color-text-tertiary: #6b7280;
  --color-text-muted: #4b5563;
  
  /* Accent - Teal/Cyan sophisticated (not corporate blue) */
  --color-accent-primary: #14b8a6;
  --color-accent-secondary: #0d9488;
  --color-accent-tertiary: #5eead4;
  --color-accent-glow: rgba(20, 184, 166, 0.15);
  
  /* Semantic Colors - Muted */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  
  /* Map Colors */
  --color-map-base: #1e2127;
  --color-map-border: #2d3139;
  --color-map-fill: #252a32;
  --color-map-hover: #2d333d;
  --color-map-active: #14b8a6;
  
  /* Marker Colors */
  --color-marker-representante: #14b8a6;
  --color-marker-regulador: #8b5cf6;
  --color-marker-vistoria: #22c55e;
  --color-marker-sinistro: #f59e0b;
  --color-marker-coverage-gap: #ef4444;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px var(--color-accent-glow);
  
  /* Glass Effect */
  --glass-bg: rgba(17, 18, 22, 0.85);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(20px);
  
  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-accent: 1px solid rgba(20, 184, 166, 0.3);
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;
  
  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Font Sizes */
  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;
  --text-md: 14px;
  --text-lg: 16px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  
  /* Layout */
  --sidebar-width: 64px;
  --sidebar-expanded: 240px;
  --header-height: 56px;
  --panel-width: 360px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
  --z-toast: 500;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-elevated);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-bg-hover);
}

/* ============================================
   APP CONTAINER
   ============================================ */

.app-container {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* ============================================
   SIDEBAR - Minimal Icon Navigation
   ============================================ */

.sidebar {
  background: var(--color-bg-secondary);
  border-right: var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4) 0;
  z-index: var(--z-sticky);
}

.sidebar-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-bg-primary);
  margin-bottom: var(--space-6);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
}

.nav-item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  color: var(--color-text-tertiary);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-item:hover {
  color: var(--color-text-secondary);
  background: var(--color-bg-elevated);
}

.nav-item.active {
  color: var(--color-accent-primary);
  background: var(--color-accent-glow);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: var(--color-accent-primary);
  border-radius: 0 2px 2px 0;
}

.nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  border: var(--border-subtle);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.main-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-bg-primary);
}

/* ============================================
   TOP BAR - Minimal Header
   ============================================ */

.top-bar {
  height: var(--header-height);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-5);
  z-index: var(--z-sticky);
}

.page-title h1 {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.page-title p {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  margin-top: 2px;
}

.top-actions {
  display: flex;
  gap: var(--space-3);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn svg {
  width: 14px;
  height: 14px;
}

.btn-primary {
  background: var(--color-accent-primary);
  color: var(--color-bg-primary);
}

.btn-primary:hover {
  background: var(--color-accent-secondary);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.btn-secondary {
  background: var(--color-bg-elevated);
  color: var(--color-text-secondary);
  border: var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--color-bg-hover);
  color: var(--color-text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-tertiary);
}

.btn-ghost:hover {
  color: var(--color-text-primary);
  background: var(--color-bg-elevated);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  display: none;
  flex: 1;
  overflow: hidden;
  flex-direction: column;
}

.content-section.active {
  display: flex;
}

/* ============================================
   HOMEPAGE - Executive Intelligence View
   ============================================ */

.executive-view {
  display: grid;
  grid-template-columns: 1fr var(--panel-width);
  height: 100%;
  overflow: hidden;
}

/* Main Map Area */
.map-hero {
  position: relative;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.map-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(20, 184, 166, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

#mapContainer {
  width: 100%;
  height: 100%;
  background: var(--color-bg-secondary);
}

/* Map Overlay Controls */
.map-overlay {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.map-overlay > * {
  pointer-events: auto;
}

.map-search {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 320px;
}

.map-search svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-tertiary);
}

.map-search input {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  outline: none;
  width: 100%;
}

.map-search input::placeholder {
  color: var(--color-text-tertiary);
}

.map-legend-compact {
  display: flex;
  gap: var(--space-2);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: var(--space-2);
}

.legend-dot {
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.legend-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot.representante { background: rgba(20, 184, 166, 0.15); }
.legend-dot.representante::after { background: var(--color-marker-representante); box-shadow: 0 0 8px var(--color-marker-representante); }

.legend-dot.regulador { background: rgba(139, 92, 246, 0.15); }
.legend-dot.regulador::after { background: var(--color-marker-regulador); box-shadow: 0 0 8px var(--color-marker-regulador); }

.legend-dot.vistoria { background: rgba(34, 197, 94, 0.15); }
.legend-dot.vistoria::after { background: var(--color-marker-vistoria); box-shadow: 0 0 8px var(--color-marker-vistoria); }

.legend-dot.sinistro { background: rgba(245, 158, 11, 0.15); }
.legend-dot.sinistro::after { background: var(--color-marker-sinistro); box-shadow: 0 0 8px var(--color-marker-sinistro); }

/* Side Panel - Intelligence Panel */
.intelligence-panel {
  background: var(--color-bg-secondary);
  border-left: var(--border-subtle);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-header {
  padding: var(--space-5);
  border-bottom: var(--border-subtle);
}

.panel-header h2 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
}

.panel-header p {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  margin-top: var(--space-1);
}

.panel-content {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
}

/* Metric Cards - Compact */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.metric-card {
  background: var(--color-bg-tertiary);
  border: var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: var(--space-4);
  transition: all var(--transition-fast);
}

.metric-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.metric-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.metric-value.accent {
  color: var(--color-accent-primary);
}

.metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-trend {
  font-size: var(--text-xs);
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.metric-trend.positive { color: var(--color-success); }
.metric-trend.negative { color: var(--color-danger); }

/* Coverage Status */
.coverage-status {
  background: var(--color-bg-tertiary);
  border: var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
}

.coverage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.coverage-header h4 {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.coverage-percentage {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-accent-primary);
  font-family: var(--font-mono);
}

.coverage-bar {
  height: 4px;
  background: var(--color-bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}

.coverage-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-secondary), var(--color-accent-primary));
  border-radius: 2px;
  transition: width var(--transition-slow);
}

.coverage-stats {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

/* Alert List */
.alert-section h4 {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.alert-badge {
  background: var(--color-danger);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.alert-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.alert-item {
  background: var(--color-bg-tertiary);
  border: var(--border-subtle);
  border-left: 2px solid var(--color-warning);
  border-radius: var(--border-radius-sm);
  padding: var(--space-3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.alert-item:hover {
  background: var(--color-bg-elevated);
  border-left-color: var(--color-accent-primary);
}

.alert-item.critical {
  border-left-color: var(--color-danger);
}

.alert-title {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.alert-desc {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  margin-top: var(--space-1);
  line-height: 1.4;
}

.alert-meta {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.quick-action {
  background: var(--color-bg-tertiary);
  border: var(--border-subtle);
  border-radius: var(--border-radius-sm);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.quick-action:hover {
  background: var(--color-bg-elevated);
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.1);
}

.quick-action svg {
  width: 20px;
  height: 20px;
}

.quick-action span {
  font-size: var(--text-xs);
}

/* ============================================
   MAP STYLES
   ============================================ */

.leaflet-container {
  background: var(--color-bg-secondary) !important;
  font-family: var(--font-display) !important;
}

.leaflet-control-attribution {
  display: none !important;
}

.custom-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-bg-primary);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast);
}

.custom-marker:hover {
  transform: scale(1.3);
}

.marker-representante { background: var(--color-marker-representante); }
.marker-regulador { background: var(--color-marker-regulador); }
.marker-vistoria { background: var(--color-marker-vistoria); }
.marker-sinistro { background: var(--color-marker-sinistro); }

.marker-cluster {
  background: var(--color-bg-elevated);
  border: var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-primary);
  box-shadow: var(--shadow-md);
}

/* ============================================
   MODALS & OVERLAYS
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--color-bg-secondary);
  border: var(--border-subtle);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: calc(var(--z-modal) + 1);
  min-width: 480px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: var(--space-5);
  border-bottom: var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: var(--text-lg);
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--color-text-tertiary);
  font-size: var(--text-xl);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-text-primary);
}

.modal-body {
  padding: var(--space-5);
  overflow-y: auto;
  max-height: calc(90vh - 140px);
}

.modal-footer {
  padding: var(--space-4) var(--space-5);
  border-top: var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-bg-tertiary);
  border: var(--border-subtle);
  border-radius: var(--border-radius-sm);
  padding: var(--space-3) var(--space-3);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group input::placeholder {
  color: var(--color-text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* ============================================
   TABLES
   ============================================ */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.data-table th {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: var(--border-subtle);
  background: var(--color-bg-secondary);
}

.data-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: var(--border-subtle);
  color: var(--color-text-secondary);
}

.data-table tr:hover td {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: var(--text-xs);
  font-weight: 500;
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-badge.ativo { background: rgba(34, 197, 94, 0.1); color: var(--color-success); }
.status-badge.ativo::before { background: var(--color-success); }

.status-badge.inativo { background: rgba(107, 114, 128, 0.1); color: var(--color-text-tertiary); }
.status-badge.inativo::before { background: var(--color-text-tertiary); }

.status-badge.pendente { background: rgba(245, 158, 11, 0.1); color: var(--color-warning); }
.status-badge.pendente::before { background: var(--color-warning); }

/* ============================================
   TOOLTIPS
   ============================================ */

.tooltip {
  position: absolute;
  background: var(--color-bg-elevated);
  border: var(--border-subtle);
  border-radius: var(--border-radius-sm);
  padding: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-tooltip);
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-fast);
}

.tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-slide-in {
  animation: slideIn 0.3s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .executive-view {
    grid-template-columns: 1fr;
  }
  
  .intelligence-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 56px;
  }
  
  .sidebar-logo {
    width: 32px;
    height: 32px;
    font-size: var(--text-sm);
  }
  
  .nav-item {
    width: 40px;
    height: 40px;
  }
}
