﻿/*body {
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    padding: 10px;
}*/

.loading-bar-container {
    width: 90%;
    max-width: 600px;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-left: auto;
    margin-right: auto;
}

.loading-bar {
    height: 100%;
    background-color: #97C121; /* Green color */
    width: 0%;
    border-radius: 10px 0 0 10px;
    transition: width 0.3s ease-in-out;
}

.loading-text {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #333;
}
