html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#panorama {
    width: 100vw;
    height: 100vh;
}

.custom-hotspot {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    color: #52ae30;
    padding: 0.3em 0.5em;
    border-radius: 0.5em;
    font-size: 1em;
    white-space: nowrap;
    cursor: pointer;
}

.hotspot-icon-img {
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.3em;
}

@media (max-width: 1024px) and (orientation: portrait) {
    .custom-hotspot {
        font-size: 2em;
        padding: 0.3em 0.5em;
    }

    .hotspot-icon-img {
        width: 1.5em;
        height: 1.5em;
    }
}

.custom-hotspot:hover {
    filter: brightness(2);
}

.hotspot-icon {
    animation: pulse 1.5s ease-in-out infinite;
    animation-iteration-count: 1;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.welcome-tooltip {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #52ae30;
    padding: 0.3rem;
    border-radius: 0.8em;
    z-index: 9999;
    font-size: 1.1em;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}