.panorama-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.panorama-wrapper {
    width: 100%;
    height: 100%;
    cursor: grab;
    position: relative;
    overflow: hidden;
}

.panorama-image {
    width: auto;
    height: 120%;
    position: absolute;
    pointer-events: none;
    user-select: none;
}
.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
}
.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Fullscreen mode */
.panorama-container.fullscreen {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    z-index: 1000;
}
.panorama-container img {
    max-width: none !important;
    height: auto !important;
    width: auto !important;
}
.panorama-container.fullscreen .panorama-image {
    height: 120% !important; /* Ensure the image is still 120% in fullscreen */
    width: auto !important;
}
.ios-fullscreen {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 9999;
}