/* Lightweight Custom Slider */

/* Panorama Viewer Styles */
.panorama-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Responsive aspect ratio */
}

.panorama-viewer {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

/* Ensure Pannellum container gets proper sizing */
.panorama-viewer .pnlm-container {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
    position: relative;
}

.panorama-viewer canvas {
    width: 100% !important;
    height: 100% !important;
}

.panorama-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    pointer-events: none;
    z-index: 10;
}
/* 