.sword-360-viewer {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    margin: 20px 0;
    height: 400px; /* Default height for mobile */
}

.sword-360-viewer canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: grab;
}

.sword-360-viewer canvas:active {
    cursor: grabbing;
}

/* Desktop styles */
@media (min-width: 769px) {
    .sword-360-viewer {
        height: 600px; /* Larger height for desktop */
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .sword-360-viewer {
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Loading overlay styles */
.sword-360-viewer .loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    color: #666;
    font-size: 1em;
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
} 