/* Player GEOMETRY_CANVAS - styles scopes pour eviter les collisions avec QCU */

.geometry-preview-section {
    background: #f6f8fb;
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid #dce4ee;
}

.geometry-template-preview {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(19, 40, 63, 0.08);
}

.geometry-question {
    background: #f8fafc;
    border-left: 4px solid #2d7dd2;
    border-radius: 8px;
    color: #1d2b38;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 16px 18px;
}

.geometry-canvas-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid #bfd0df;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.geometry-canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
    cursor: grab;
}

.geometry-canvas:active {
    cursor: grabbing;
}

.geometry-status {
    min-height: 24px;
    margin-top: 10px;
    color: #536578;
    font-size: 14px;
    text-align: right;
}

@media (max-width: 700px) {
    .geometry-preview-section {
        padding: 14px;
    }

    .geometry-template-preview {
        padding: 14px;
    }

    .geometry-question {
        font-size: 16px;
        padding: 13px 14px;
    }
}