
.button {
    border-radius: 5px;
    margin: 1.5em 5px 5px 5px;
    font-size: 1em;
    padding: 7px 15px 8px 15px;
    background-color: #428BCA;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    transition: 0.1s;
    display: inline-flex;
    align-items: center;
}

.button:hover {
    cursor: pointer;
    background-color: #2E6390;
}

.button-grey {
    border-radius: 5px;
    margin: 1.5em 5px 5px 5px;
    font-size: 1em;
    padding: 7px 15px 8px 15px;
    background-color: #e5e5e5;
    color: #414141;
    border: none;
    text-decoration: none;
    transition: 0.1s;
    display: inline-flex;
    align-items: center;
}

.button-grey i {
    opacity: 0.7;
    margin-left: 0.5em;
    font-size: 0.7em;
}

.button-grey:hover {
    cursor: pointer;
    background-color: #c7c7c7;
}

.button_close {
    background-color: #e42a2a;
    color: #f2f2f2;
}

.button_close i {
    width: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button_close:hover {
    cursor: pointer;
    background-color: #b61111;
}

.inline-button {
    margin: 0;
}

.title-button {
    font-size: 0.7em;
}



.large_inFilter_button {
    width: 100%;
    margin: 0 !important;
    padding: 0.5em 0.7em !important;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.large_inFilter_button i {
    width: 1.1em;
    font-size: 1em !important;
    display: flex;
    justify-content: center;
}

.large_inFilter_button span {
    flex-grow: 1;
    text-align: center;
}





.management_buttons {
    display: flex;
    gap: 0.5em;
    margin: 0 auto;
    width: 100%;
    max-width: 15em;
}

.management_buttons.vertical {
    flex-direction: column;
}

.management_buttons.horizontal {
    flex-direction: row;
}

.management_buttons a {
    display: flex;
    gap: 0.4em;
    width: 100%;
}

.management_buttons a span {
    text-align: right;
    flex-grow: 1;
}

.management_buttons a i {
    margin: 0;
}


