@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
    
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #f0f9ff 0%, #e2f0fd 100%);
      min-height: 100vh;
    }
    
    .header-gradient {
      background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    }
    
    .metric-card {
      transition: all 0.3s ease;
      border-left: 4px solid #0ea5e9;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
    
    .metric-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .filter-card {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      border-radius: 12px;
      background: white;
    }
    
    .table-container {
      max-height: 60vh;
      overflow-y: auto;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
    }
    
    .table-container::-webkit-scrollbar {
      width: 8px;
    }
    
    .table-container::-webkit-scrollbar-track {
      background: #f1f5f9;
    }
    
    .table-container::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 4px;
    }
    
    .table-container::-webkit-scrollbar-thumb:hover {
      background: #94a3b8;
    }
    
    .sticky-header th {
      position: sticky;
      top: 0;
      background-color: #f8fafc;
      z-index: 10;
    }
    
    .map-btn {
      transition: all 0.2s ease;
    }
    
    .map-btn:hover {
      transform: scale(1.1);
      background-color: #0284c7 !important;
    }
    
    .pill {
      font-size: 0.75rem;
      padding: 3px 10px;
      border-radius: 20px;
      display: inline-block;
    }
    
    input, select {
      border-radius: 8px !important;
      border: 1px solid #e2e8f0 !important;
      padding: 0.65rem 0.75rem !important;
      transition: all 0.2s ease;
      background: #f8fafc;
    }
    
    input:focus, select:focus {
      border-color: #7dd3fc !important;
      box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.3) !important;
      outline: none;
      background: white;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
      transition: all 0.2s ease;
      box-shadow: 0 4px 6px rgba(2, 132, 199, 0.15);
    }
    
    .btn-primary:hover {
      background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(2, 132, 199, 0.25);
    }
    
    .btn-secondary {
      background: #f1f5f9;
      transition: all 0.2s ease;
    }
    
    .btn-secondary:hover {
      background: #e2e8f0;
      transform: translateY(-2px);
    }
    
    .section-title {
      position: relative;
      padding-bottom: 0.75rem;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #0ea5e9 0%, #7dd3fc 100%);
      border-radius: 3px;
    }
    
    .stat-up {
      color: #10b981;
    }
    
    .stat-down {
      color: #ef4444;
    }
    
    .result-table tr:nth-child(even) {
      background-color: #f8fafc;
    }
    
    .result-table tr:hover {
      background-color: #f0f9ff;
    }