﻿
.loading-screen {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background-color: rgb(0 0 0 / 80%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    height: 100%;
}

/* Adjust the size of the loading image */
    .loading-screen img {
        width: 350px;
    }

