
    /* Mantendo o estilo coerente com metaOBSERVATÓRIO */
    .meta-pro-font {
      font-family: 'Meta Pro', sans-serif;
    }

    .meta-pro-font-bold {
      font-family: 'Meta Pro', sans-serif;
      font-weight: 700;
    }

    /* MAIS ESPAÇO NO TOPO */
    body {
      padding-top: 2rem;
    }

    .main-container {
      margin-top: 3rem;
    }

    :root {
      --mp-primary: #0b3c6d;
      --mp-secondary: #f2c94c;
      --mp-bg: #f4f6f9;
    }

    body {
      background: var(--mp-bg);
    }

    .mp-header {
      background: #fff;
      border-bottom: 4px solid var(--mp-primary);
    }

    .mp-title {
      font-weight: 800;
    }

    .mp-card {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    }

    .mp-stat {
      font-size: 2rem;
      font-weight: 700;
      color: var(--mp-primary);
    }

    .nav-tabs .nav-link.active {
      background: var(--mp-primary);
      color: #fff;
    }

    #map {
      height: 480px;
      border-radius: 1rem;
      position: relative;
    }

    .map-loading-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      border-radius: 1rem;
    }

    .legend-item {
      display: inline-flex;
      align-items: center;
      margin-right: 15px;
    }

    .legend-color {
      width: 15px;
      height: 15px;
      border-radius: 3px;
      margin-right: 5px;
    }

    .table-top5 th {
      background-color: var(--mp-primary);
      color: white;
    }

    .table-top5 tbody tr:hover {
      background-color: rgba(11, 60, 109, 0.05);
    }

    .badge-estado {
      font-size: 0.8em;
      padding: 4px 8px;
      border-radius: 12px;
    }

    .hora-report {
      font-size: 0.85em;
      color: #666;
    }

    .loading-spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid #f3f3f3;
      border-top: 3px solid var(--mp-primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    .cluster-icon {
      background-color: var(--mp-primary);
      color: white;
      border-radius: 50%;
      text-align: center;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
    }
