/**
 * See in Room — artwork drag affordances.
 * Audited 2026-07-30 (storefront redesign N/A).
 */
#av-artwork-container {
    cursor: grab !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
}

#av-artwork-container:active {
    cursor: grabbing !important;
}

/* Ensure all content inside the artwork container is draggable */
#av-artwork-container img {
    pointer-events: none;
    /* Make sure image is visible */
    display: block;
    max-width: 100%;
    margin: 0;
}

/* Style the instructions text */
.av-instructions {
    text-align: center;
    margin: 10px 0;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.av-instructions p {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-style: italic;
} 