  .mapa_nuevo{
    position: relative;
    margin: 0 7%;
  }

    #plano_dinamico {
      width: 90%;
      max-width: 500px;
      cursor: pointer;
    }

    /* table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 50px;
    } */

    /* table th, table td {
      border: 1px solid #ccc;
      padding: 8px;
      text-align: center;
    } */

    table tr.highlight {
      background-color: #100c05b8;
      transition: background-color 0.4s;
    }

    /* Hover y selección */
    
    svg [id] {
      transition: filter 0.3s ease;
    }
    svg [id]:hover {
      opacity: 1;
      filter: brightness(1.2);
    }
    svg [id].dimmed {
      opacity: 0.3;
      transition: opacity 0.3s ease;
    }

    svg .active {
      transition: fill 0.3s ease;
    }

/* Color del sector seleccionado */
/* svg [id].active rect,
svg [id].active polygon,
svg [id].active path {
  fill: #ffe066 !important;
  stroke-width: 0.5;
  transition: fill 0.3s ease;
} */


    @keyframes pulse {
      from { transform: scale(1); }
      to { transform: scale(1.002); }
    }



/* Tooltip */
    .tooltip {
      position: absolute;
      background: rgba(0,0,0,0.8);
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 14px;
      pointer-events: none;
      opacity: 0;
      transform: translate(-50%, -120%);
      transition: opacity 0.2s;
      white-space: nowrap;
      z-index: 10;
      text-transform: uppercase;
      font-family: 'Oswald', Arial, sans-serif;
    }