﻿/* The alert message box */
.alert {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 100;
    padding: 20px;
    background-color: lightgray; /* Red */
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    width: 50%;
    font-family: 'Merriweather';
    text-align: center;
}
table,tr,td{

}
/* 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;
    }
