/* seam-carving demo */

.sc-brushes {
    display: inline-flex;
    gap: 0.3rem;
}

.sc-brush.active {
    border-color: #f0883e;
    color: #f0883e;
}

.sc-views {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.sc-views figure {
    margin: 0;
    max-width: 100%;
}

/* Checkerboard behind the image shows where it ends */
.sc-views canvas {
    display: block;
    max-width: 100%;
    height: auto;
    background: repeating-conic-gradient(#161b22 0 25%, #0d1117 0 50%) 0 0 / 16px 16px;
}

#carved.painting {
    cursor: crosshair;
    touch-action: none;
}

.sc-views figcaption {
    margin-top: 0.3rem;
    color: #8b949e;
    font-size: 0.8rem;
}
