/* body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #e3dede;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
} */

/* .container {
    display: flex;
    gap: 10px;
    height: 540px;
    max-width: 1050px;
    width: 100%;
    border-radius: 20px;
} */

.tools-board {
    width: 100%;
    border-radius: 20px;
    background-color: #f8f7f6;
    padding: 10px 22px 0;
    margin-bottom: 30px;
}

.tools-board .row {
    margin-bottom: 20px;
}

.tools-board .table {
    background-color: #f8f7f6
}

.row .options {
    list-style: none;
    margin: 10px 0 0 5px;
}

.row .options .option {
    display: flex;
    cursor: pointer;
    align-items: center;
    margin-bottom: 10px;
}

.option:is(:hover, .active) img {
    filter: grayscale(20%);
}

.option :where(span, label) {
    color: black;
    cursor: pointer;
    padding-left: 10px;
}

.option:is(:hover, .active) :where(span, label) {
    color: #f4130b;
}

.option #fill-color {
    height: 14px;
    cursor: pointer;
    width: 14px;
}

#fill-color:checked~label {
    color: #e93e2b;
}

.option #size-slider {
    width: 100%;
    height: 5px;
    margin-top: 10px;
}

.colors .options {
    display: flex;
    justify-content: space-between;
}

.colors .option {
    height: 20px;
    width: 20px;
    border-radius: 30%;
    margin-top: 3px;
    position: relative;
}

.colors .option:nth-child(1) {
    background-color: #fff;
    border: 1px solid #bfbfbf;
}

.colors .option:nth-child(2) {
    background-color: black;
}

.colors .option:nth-child(3) {
    background-color: #ef4415;
}

.colors .option:nth-child(4) {
    background-color: green;
}

.colors .option:nth-child(5) {
    background-color: #c1f40a;
}

.colors .option.selected::before {
    position: absolute;
    content: "";
    height: 12px;
    top: 50%;
    left: 50%;
    width: 12px;
    background: inherit;
    border-radius: inherit;
    border: 2px solid #fff;
    transform: translate(-50%, -50%);
}

.colors .option:first-child.selected::before {
    border-color: #ccc;
}

.option #color-picker {
    opacity: 0;
    cursor: pointer;
}

.buttons button {
    width: 80%;
    color: #fff;
    border: none;
    outline: none;
    font-size: 0.9rem;
    padding: 3px 0;
    margin-bottom: 13px;
    background: none;
    border-radius: 5px;
    cursor: pointer;
}

.buttons .clear-canvas {
    color: black;
    border: 1px solid #9fc39f;
    transition: all 0.2s ease;
    border: 2px solid black;
    font-size: 13px;
}

.clear-canvas:hover {
    color: #fff !important;
    background: #05afde;
}

.buttons .save-img {
    color: black;
    border: 1px solid #9fc39f;
    transition: all 0.2s ease;
    border: 2px solid black;
    font-size: 13px;
}

.save-img:hover {
    color: #fff !important;
    background: #05afde;
}

.drawing-board {
    flex: 1;
}

.drawing-board canvas {
    width: 100%;
    height: 600px;
    border:black 3px solid;
    border-radius: 10px;
}
