/* --- Base Styles for Standalone Pages --- */
body {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.interactive-wrapper {
    perspective: 2000px;
}

/* --- Style for the BACK ED button on special pages --- */
.back-ed-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #6D69FA;
    color: #e8e7e6;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.2s ease;
    z-index: 100;
}

.back-ed-btn:hover {
    background-color: #171819
}

.interactive-object.panning {
    cursor: move; /* Or 'grabbing' if you prefer */
}