/* The alert message box */
.alert {
    padding: 15px;
    color: white;
    margin-bottom: 15px;
}

.alert ul {
    margin: unset;
}

.danger {
    background-color: #D32F2F; /* Red */
}

.info {
    background-color: #E5F6FD;
    color: rgb(1, 67, 97)
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}
