.params-container{
    position: relative;
}

.builder-filter{
    margin: 10px 0;
}

.form-search-builder{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.filter-name-input{
    margin-left: 5px;
    font-size: 1rem;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    padding: 1px;
    border : none;
    border-bottom: 1px solid black;
    background-color: transparent;
    outline: none;
}

.btn-filter{
    display: flex;
    background-color: rgb(25, 118, 210);
    outline: 0px;
    border: 0px;
    margin: 30px auto;
    padding: 7px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
}

.items-container{
    max-height: 700px;
    overflow-y: scroll;
}

.single-table{
    width: 100%;
}

.single-cell{
    text-align: center;
    border-bottom: 1px solid rgb(224, 224, 224);
    padding: 16px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.single-table-head{
    font-weight: bold;
    font-size: 1.7rem;
}

.builders_title{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.single-btn{
    border: 0;
    outline: 0;
    margin: 0 10px;
}

.trash-simple{
    width: 30px;
    height: 30px;
}

.trash-simple:hover{
    color : red;
}

.single-form{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.single-form h2{
    text-align: center;
    margin-bottom: 20px;
}

.form-add-simple{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrong{
    border-bottom: 1px solid  rgba(255, 0, 0, 0.87) !important;
    background-color:  rgba(255, 0, 0, 0.60);
}

.input_simple{
    color: rgba(0, 0, 0, 0.87);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    cursor: text;
    border: 0;
    outline: 0;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-bottom: 1px solid  rgba(0, 0, 0, 0.87);
    background-color: transparent;
}

.form-add-simple-btn{
    max-width: 120px;
    cursor: pointer;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 6px 16px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    color: rgb(255, 255, 255);
    background-color: rgb(25, 118, 210);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    border: 0;
}

.form-add-simple-btn:hover{
    background-color: rgb(23, 105, 186);
}

.icon-add-simple-button{
    margin: 0 10px;
    min-height: 25px;
    min-width: 25px;
}

.form-update-builder{
    display: flex;
    flex-direction: column;
    gap : 10px;
}

.builder-update-btn{
    background-color: transparent;
    border: 0;
    outline: 0;
    width: 50px;
    margin : 0 auto;
    margin-top: 20px;
    cursor: pointer;
}

/* Modal section */
.modal-hidden{
    display: none;
}

.builder-select-country{
    padding : 5px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    border-radius: 4px;
}

.blured{
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.singleModal{
    z-index: 1;
    position: fixed;
    top:50%;
    left: 50%;
    width: 350px;
    transform: translateX(-50%);
    border: 1px solid black;
    background-color: var(--menu-color);
}

.single-modal-container{
    position: relative;
    padding : 20px;
}

#close-modal{
    position: absolute;
    top : 5px;
    right: 5px;
    cursor: pointer;
    border: 0;
    background-color: transparent;
    outline: 0;
}
/* End modal section */

@media screen and (max-width: 768px) {
    .params-container{
        grid-area: 1/1/2/2;
   }
    .single-cell{
        font-size: 0.7rem;
    }

    .single-table-head{
        font-weight: bold;
        font-size: 0.9rem;
    }
    .trash-simple{
        width: 20px;
        height: 20px;
    }
}