#messageBox > div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    min-width: 230px;
}

#messageBox > div > div:first-child {
    margin-right: 20px;
    font-size: 25px;
}

#messageBox > div > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#messageBox > div > div:last-child > span:first-child {
    margin-bottom: 10px;
}

#messageBox.error > div {
    background-color: var(--error);
}

#messageBox.warning > div {
    background-color: var(--warning);
    color: var(--black);
}

#messageBox.success > div {
    background-color: var(--success);
}

#messageBox button {
    font-size: 20px;
}
