/* Experiment Shell Styles */

.experiment-header {
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-8);
}

.experiment-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

@media (min-width: 900px) {
    .experiment-layout {
        grid-template-columns: 300px 1fr;
        align-items: start;
    }
}

.experiment-sidebar {
    order: 2;
}

@media (min-width: 900px) {
    .experiment-sidebar {
        order: 1;
        position: sticky;
        top: var(--space-8);
    }
}

.experiment-main {
    order: 1;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    min-height: 500px;
    border: 1px solid var(--color-border);
}

@media (min-width: 900px) {
    .experiment-main {
        order: 2;
    }
}

.info-section {
    margin-bottom: var(--space-6);
}

.info-title {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.info-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Demo Specifics */
.canvas-container {
    width: 100%;
    border: 1px dashed var(--color-border);
    margin-bottom: var(--space-4);
    background: white;
}

canvas {
    display: block;
    width: 100%;
}