#paint_R{
    height: 80vh;
    width: 80vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;

    box-sizing: border-box;
}


#canvasContainer_R {
    border: 2px inset #9a9a9a;
    background: white;

    position: absolute;
    top:30px;
    width: 100%;
    height: calc(100% - 125px);
    cursor: crosshair;
}

.toolbox {
    position: absolute;
    bottom: 0px;
    display: flex;
    width: 100%;
    padding: 1rem;
}

.toolbox > * {
    background-color: #c3c3c3;
    border: 2px outset #9a9a9a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    height: 50px;
    width: fit-content;
    min-width: 50px;
    margin: 10px;
    cursor: pointer;
}
.toolbox > *:hover {
    border: 2px inset #9a9a9a;
    background-color: #9a9a9a;
}
.toolbox > *:last-child {
    margin-left: auto;
}