﻿#canvas-container {
    margin-top: 20px;
    position: relative;
    max-width: 400px;
}

#canvas-container > div.drag-prompt {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    opacity: 0.4;
    background-image: url('https://quotemyroof.blob.core.windows.net/sitecontent/images/misc/drag.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

.sres-canvas {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    cursor: grab;
}

.sres-canvas:active {
    cursor: grabbing;
}

.float-button {
    position: absolute;
    opacity: 0.2;
}

.float-button:hover {
    opacity: 1;
}

.float-button > i {
    display: flex;
    justify-content: center;
    align-items: center;
}

#canvas-container > .float-buttons {
    bottom: 15px;
    right: 15px;
    display: flex;
    position: absolute;
    gap: 5px;
}

#canvas-container > .float-buttons > .float-button {
    width: 30px;
    height: 30px;
    border: 1px solid black;
    border-radius: 6px;
    background-color: white;
    padding: 0 3px;
    cursor: pointer;
    position: static;
}

#canvas-container > .float-buttons > .float-button > i {
    padding: 2px 0;
    font-size: 24px;
}
