.app-error-message-head-div{
    width: 100%;
    height: 4vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
    border: 1px solid #1b1a1a;
    border-top-left-radius: 5px; 
    border-top-right-radius: 5px; 
    background-color:#be7474;
    box-sizing: border-box; 
}

.app-error-message-body-div{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px;
    border: 1px solid #1b1a1a;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;  
    background-color: var(--primary-background-color);
    box-sizing: border-box; 
}