.modal_info_box-overlay
{
    position         : fixed;
    top              : 0;
    left             : 0;
    width            : 100%;
    height           : 100%;
    background-color : rgba(0, 0, 0, 0.5);
    display          : flex;
    justify-content  : center;
    align-items      : center;
    z-index          : 1000;
}

/* Style pour la boîte modale */
.modal_info_box-box
{
    background-color : white;
    padding          : 20px;
    border-radius    : 8px;
    box-shadow       : 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index          : 1001;
    max-width        : 400px;
    text-align       : center;
}

/* Style pour le bouton OK */
.modal_info_box-box button
{
    margin-top       : 20px;
    padding          : 10px 20px;
    border           : none;
    background-color : #007bff;
    color            : white;
    border-radius    : 5px;
    cursor           : pointer;
}

.modal_info_box-box button:hover
{
    background-color : #0056b3;
}
