/* Message Box
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body .message_box_info_string {
    color: black;
    background: #E8F3FC;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 12px;
    border-radius: 6px;
    position: relative;
    font-weight: 500; 
    border: none;
}

body .message_box_info_string::before {
    content: "";
    display: inline-block;
    width: 20px; 
    height: 20px; 
    margin-right: 5px; /* Customize the space between the icon and text */
    background-image: url("/assets/icons/info.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

body .message_box_warning_string {
    color: black;
    background: #FFF0F0;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 12px;
    border-radius: 6px;
    position: relative;
    font-weight: 500;    
    border: none; 
}

body .message_box_warning_string::before {
    content: "";
    display: inline-block;
    width: 20px; 
    height: 20px; 
    margin-right: 5px; /* Customize the space between the icon and text */
    background-image: url("/assets/icons/warning.svg");
    background-size: contain;
    background-repeat: no-repeat;
}


body .message_box_info_string_no_icon {
    color: black;
    background: #E8F3FC;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 12px;
    border-radius: 6px;
    position: relative;
    font-weight: 500; 
    border: none;
}