 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #007bff;
            color: #fff;
            margin: 0;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .box {
            width: 100%;
            max-width: 600px;
            background-color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            text-align: center;
            margin-bottom: 20px;
        }
        h1 {
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: #333;
        }
        .display {
            font-size: 16px;
            margin-top: 10px;
            color: #333;
        }
        .info {
            font-weight: bold;
            color: #007bff;
        }
        .data {
            font-weight: normal;
            color: #555;
        }
        .loading {
            color: #007bff;
            font-size: 18px;
        }
        /* Mapa */
        #map {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            margin-top: 20px;
        }