/* AV_GENERAL STYLES */
.crud_elem{
    min-width: 20px;
    max-width: 60px;
    height: 20px;
    cursor: pointer;

    background-color: rgb(240, 228, 228);
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 5px 15px;

    font-weight: bold;
    font-size: 16px;
    color: rgb(118, 118, 118);
}
.crud_elem.elem_del:hover{
    background-color: indianred;
    color: white;
}
.crud_elem.elem_edit:hover{
    background-color: black;
    color: white;
}

.av_display-off{
    display: none!important;
}




/* AV_NAV */
.ps_nav{
    width: 100%;
    padding: 20px;
}
.ps_nav form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.psSearch{
    width: 100%;
    background-color: #f9f6f6;

    max-width: 500px;
    min-width: 200px;
    min-height: 30px;

    border: 0px;
    border-radius: 10px;

    padding: 10px;
    text-align: center;

    font-family: FontAwesome, "Open Sans", Verdana, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}


/* AV_MODAL */
.av_modal{
    min-width: 100vw;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.473);
    position: fixed;
    top: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

}

.av_modal-body{
    min-width: 200px;
    min-height: 200px;

    background-color: white;
}


/* AV_MODAL */
.av_modal-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    .av_modal-form{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
