/* Loading gif, used for Ajax calls. */
div.loading {
    display: none;
    z-index: 100;
    width: 69px;
    height: 89px;
    border: 1px solid black;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -44px 0 0 -34px;
    padding: 2px;
}

/* Display green or red table row according to server response if the data has 
been saved or not */
td.row-saved {
    color: #468847;
    background-color: #dff0d8!important;
    border-color: #d6e9c6;
    transition: 1.5s;
}
td.row-notsaved {
    color: #a94442;
    background-color: #f2dede!important;
    border-color: #ebccd1;
    transition: 1.5s;
}

/* General template correction */
.modal-dialog .modal-body {
    padding: 1rem!important;
}