﻿.canvas {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    opacity: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 4rem;
    background-color: var(--lemon-white);
}

.canvas > p {
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.canvas .graphic {
    height: 15rem;
}

.canvas .button-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.main-content.with-canvas {
    max-height: calc(100vh - 7rem);
    overflow-y: hidden;
}