        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }
        #map {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        /* Custom image control panel */
        .custom-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            height: 80px;
            justify-content: space-between;
        }
        .custom-controls img {
            width: 50px;
            height: 50px;
            cursor: pointer;
            margin: 5px;
        }
        .custom-controls .info {
            margin-bottom: 10px;
            color: #000;
            font-family: Arial, sans-serif;
            text-align: center;
            font-size: 12pt;
        }