.info-window {
    padding: 8px 12px 8px 32px;
    border-radius: 8px;
    background-color: #313133;
    background-image: url('./info-icon.svg');
    background-position: 8px 50%;
    background-repeat: no-repeat;
    gap: 8px;
    color: #f2f5fa;
    font-size: 14px;
    line-height: 20px;
}

.draw-button {
    padding: 8px 12px 8px 32px;
    border-radius: 8px;
    background-color: #fff;
    background-image: url('./lasso-icon.svg');
    background-position: 8px 50%;
    background-repeat: no-repeat;
    gap: 8px;
    color: #34374a;
    border-color: unset;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px #5f698333;
    box-shadow: 0px 0px 2px 0px #5f698314;
    border: unset;
    transition: background-color 0.1s;
}

.draw-button.active,
.draw-button:hover {
    color: #122db2;
    background-image: url('./lasso-icon-blue.svg');
}

.delete-button {
    height: 32px;
    width: 32px;
    border-radius: 8px;
    background-color: #fff;
    background-image: url('./trash-icon.svg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-color: unset;
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px #5f698333;
    border: unset;
}

.canvas {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}
