:root {
      --db-red: #EC0016;
      --db-dark-red: #BB0000;
      --db-black: #000000;
      --db-dark-gray: #323232;
      --db-gray: #5A5A5A;
      --db-light-gray: #E6E6E6;
      --db-white: #FFFFFF;
      --success: #009D71;
      --warning: #FFCC00;
      --danger: #EC0016;
      --card-radius: 12px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "DB Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
      background: linear-gradient(135deg, #f5f7fa 0%, #e5e8ee 100%);
      color: var(--db-dark-gray);
      line-height: 1.6;
      min-height: 100vh;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    header {
      background: linear-gradient(120deg, var(--db-red) 0%, var(--db-dark-red) 100%);
      color: var(--db-white);
      padding: 2rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin-bottom: 2rem;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .db-logo {
      font-weight: 900;
      font-size: 2.2rem;
      color: var(--db-white);
      background-color: var(--db-red);
      padding: 0.5rem;
      border-radius: 8px;
    }

    .logo-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      font-weight: 500;
    }

    .header-info {
      text-align: right;
    }

    .last-update {
      font-size: 0.9rem;
      color: var(--db-light-gray);
      margin-top: 0.5rem;
    }

    .intro {
      background: var(--db-white);
      border-radius: var(--card-radius);
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border-left: 5px solid var(--db-red);
    }

    .intro h2 {
      color: var(--db-dark-gray);
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }

    .intro p {
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .dashboard {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .card {
      background: var(--db-white);
      border-radius: var(--card-radius);
      padding: 2rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border-top: 4px solid transparent;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .card.north { border-top-color: var(--success); }
    .card.middle { border-top-color: var(--warning); }
    .card.south { border-top-color: var(--danger); }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .card h2 {
      font-size: 1.5rem;
      color: var(--db-dark-gray);
      font-weight: 700;
    }

    .status {
      font-weight: 700;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      display: inline-block;
    }

    .status-green { background: rgba(0, 157, 113, 0.15); color: var(--success); }
    .status-yellow { background: rgba(255, 204, 0, 0.15); color: #B38700; }
    .status-red { background: rgba(236, 0, 22, 0.15); color: var(--danger); }

    .progress-container {
      background: var(--db-light-gray);
      border-radius: 10px;
      height: 14px;
      margin: 1.2rem 0;
      overflow: hidden;
    }

    .progress-bar {
      height: 100%;
      width: 0;
      border-radius: 10px;
      transition: width 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
      position: relative;
    }

    .north .progress-bar { background: var(--success); }
    .middle .progress-bar { background: var(--warning); }
    .south .progress-bar { background: var(--danger); }

    .progress-info {
      display: flex;
      justify-content: space-between;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .stat-item {
      background: #f8f9fa;
      padding: 1rem;
      border-radius: 8px;
      text-align: center;
      border-left: 3px solid var(--db-red);
    }

    .stat-value {
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--db-dark-gray);
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--db-gray);
    }

    .description {
      font-size: 1rem;
      color: var(--db-gray);
      border-top: 1px solid var(--db-light-gray);
      padding-top: 1.5rem;
      margin-top: 1.5rem;
      line-height: 1.6;
    }

    .map-container {
      background: var(--db-white);
      border-radius: var(--card-radius);
      padding: 2rem;
      position: relative;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem;
      height: 500px;
    }

    #map {
      height: 100%;
      border-radius: 8px;
      z-index: 1;
    }

    .map-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      z-index: 2;
      max-width: 250px;
    }

    .map-title {
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--db-dark-gray);
    }

    .map-legend {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
    }

    .legend-color {
      width: 16px;
      height: 16px;
      border-radius: 4px;
    }

    footer {
      text-align: center;
      padding: 2rem;
      color: var(--db-gray);
      font-size: 0.9rem;
      border-top: 1px solid var(--db-light-gray);
      margin-top: 3rem;
    }

    @media (max-width: 992px) {
      .dashboard {
        grid-template-columns: 1fr;
      }
      
      .header-content {
        flex-direction: column;
        text-align: center;
      }
      
      .header-info {
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .map-container {
        height: 400px;
      }
      
      .stats {
        grid-template-columns: 1fr;
      }
    }

.leaflet-control-zoom {
  border: 2px solid rgba(0, 0, 0, 0.2) !important;
  background-clip: padding-box !important;
}

.leaflet-control-zoom a {
  background-color: #fff !important;
  color: #000 !important;
  font-weight: bold !important;
  font-size: 18px !important;
}

.leaflet-control-zoom a:hover {
  background-color: #f4f4f4 !important;
}

.city-label {
  font-size: 10px !important;
  font-weight: bold !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 4px !important;
  padding: 2px 4px !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  margin-top: -5px !important;
}