* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #ffffff;
            padding: 20px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        h1 {
            text-align: center;
            color: #C00000;
            margin-bottom: 10px;
            font-size: 28px;
        }
        
        .total-info {
            text-align: center;
            color: #000;
            margin-bottom: 10px;
            font-size: 25px;
            font-weight: 600;
        }
        .percentage-info {
            text-align: center;
            color: #000;
            margin-bottom: 30px;
            font-size: 15px;
        }
        .charts-grid {
            display: grid;
            grid-template-columns: 2fr 0.7fr;
            gap: 20px;
            margin-bottom: 20px;
            overflow: visible;
        }
        .chart-container {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            position: relative;
            min-height: 620px;
            overflow: visible;
        }
        .chart-container h2 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
        }
        .chart-wrapper {
            position: relative;
            height: 600px;
            overflow: visible;
        }
        .list-wrapper {
            height: auto;
            overflow: auto;
            max-height: 600px;
        }
        .list-wrapper ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .list-wrapper li {
            padding: 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 15px;
            color: #333;
            display: flex;
            align-items: center;
        }
        .list-wrapper li:last-child {
            border-bottom: none;
        }
        .list-wrapper li:before {
            content: "•";
            margin-right: 12px;
            font-size: 20px;
            color: #003f5c;
            font-weight: bold;
        }
        .percentage-info {
            margin-top: 15px;
            line-height: 1.5;
        }
        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        .error {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
        }
        .footer-info {
            text-align: center;
            color: #000;
            margin-top: 20px;
            font-size: 15px;
            padding-top: 5px;
        }
        .heatmap-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background-color: #003f5c;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s;
        }
        .heatmap-btn:hover {
            background-color: #002a3f;
        }
        .button-container {
            text-align: center;
            margin: 30px 0;
        }
        @media (max-width: 1200px) {
            .charts-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Botón flotante para ir al visor */
        .floating-map-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .floating-map-btn a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #C00000;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(192, 0, 0, 0.4);
            transition: all 0.3s ease;
        }

        .floating-map-btn a:hover {
            background-color: #a00000;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(192, 0, 0, 0.6);
        }

        .close-btn-map {
            width: 32px;
            height: 32px;
            background-color: white;
            border: 2px solid #C00000;
            color: #C00000;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
            font-weight: bold;
        }

        .close-btn-map:hover {
            background-color: #C00000;
            color: white;
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .floating-map-btn {
                bottom: 20px;
                right: 20px;
            }

            .floating-map-btn a {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .close-btn-map {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }
        }