  #loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        #loader-bar-container {
            width: 80%;
            max-width: 300px;
            background-color: #eee;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        #loader-bar {
            width: 0;
            height: 20px;
            background-color: #4CAF50;
            transition: width 0.3s;
        }

        #loader-percentage {
            font-size: 18px;
            margin-top: 10px;
        }
