/* * {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    border: 0px;
} */
/* body {
    font-family: sans-serif;
    background-color: #726e6e;
} */

#container-kanban {
    margin: auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 160px);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    overflow-y: auto;
}
.container-kbn__column {
    width: 180px;
    height: 8em;
    background-color: #fff;
    border-radius: 9px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;

    .container-kbn__column__head {
        position: relative;
        padding: 5px;
        display: flex;
        justify-content: center;
        background: #000;
        color: white;
        height: 30%;
        align-items: center;
        font-size: 13px;
    }
    .container-kbn__column__body {
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
        gap: 9px;
        height: 80%;
        margin-top: 7px;
        padding-left: 16px;
        scrollbar-gutter: stable;
    }
}

/* Clientes html */

.cliente-card {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4e73df;
    width: 90%;
    height: 25%;
    border-radius: 7px;
    cursor: pointer;
    color: aliceblue;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 7px;
}

.cliente-info {
    margin: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: small;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    user-select: none;
}

#add-btn-kbn {
    position: absolute;
    right: 0;
    margin-right: 2%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12%;
    height: 50%;
    cursor: pointer;
    color: #aaa;
    font-size: 190%;
    font-weight: 200;
    border: none;
}

/* Modal */

#modal-kbn__cliente {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    .modal__client__box {
        background-color: #fff;
        width: 400px;
        border-radius: 7px;
        overflow: hidden;
        .modal__client__box__header {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            border-bottom: 3px solid #000;
        }
    }
}

.modal-kbn__form {
    background-color: #fff;
    width: 400px;
    border-radius: 7px;
    overflow: hidden;
    padding: 15px;
}

.modal-kbn__header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 3px solid #000;
    border-radius: 7px;
}

.modal-kbn__header span {
    font: 18px;
    font-weight: 700;
    color: #333;
}

.header-kbn__btn {
    border: none;
    background: none;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    color: #333;
}

.modal-kbn__form-group select,
.modal-kbn__form-group input {
    width: 100%;
    padding: 5px;
    border-radius: 7px;
    font-size: 14px;
    border: 1px solid #999;
    color: #333;
}

.modal-kbn__form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin: 7px 0px;
}

.modal-kbn__form-group select {
    width: 100%;
    font-size: 14px;
    color: #333;
    border-radius: 7px;
}

.primary-btn {
    display: block;
    margin-left: auto;
    margin-top: 17px;
    border: none;
    background-color: #000;
    color: white;
    font-size: 16px;
    padding: 9px 22px;
    border-radius: 6px;
    cursor: pointer;
}
