body {
    background-color: hwb(54 85% 3%);
}

.tool-icon {
    cursor: pointer;
    font-size: 24px;
    margin: 10px;
}

#canvas {
    border: 2px solid #000;
    display: block;
    margin: 0 auto;
    width: 100%;
    /* max-width: 800px; */
    height: 100%;
    min-height: calc(100vh - 150px);
    background-color: white;
}

.modal-body img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
}

.btn-template {
    margin-top: 10px;
}

@media (max-width: 768px) {
    #canvas {
        height: calc(100vh - 150px);
    }
}

.cookie-consent {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 9999;
}

.cookie-consent button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}