body, html {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.loading-container {
    position: fixed;
    bottom: 10%; /* Adjust this value to move the loading bar further from the bottom if needed */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    padding: 10px; /* Adjust this value for more or less padding around the loading content */
}

.loading-content {
    text-align: center;
    color: white;
    width: 30%; /* Adjust the width as needed */
}

.progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin-top: 20px;
}

.progress {
    width: 0%;
    height: 10px;
    background-color: rgb(211, 11, 51);
    border-radius: 5px;
    animation: load 10s linear forwards;
}

@keyframes load {
    from { width: 0%; }
    to { width: 100%; }
}
