﻿/* loading-spinner.css */

#loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: #b82a38;
    text-align: center;
}

.spinner img {
    animation: spin 2s linear infinite;
    width: 100px;
    height: 100px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.table-loading tbody {
    opacity: 0.3; /* Makes the table look disabled while loading */
}
