html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#panorama {
    width: 100%;
    height: 100vh;
}

/* Style the hotspots */
.pnlm-hotspot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pnlm-hotspot:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Style the tooltip */
.pnlm-tooltip {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    font-family: Arial, sans-serif;
} 