<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> /* Loading screen styles */
 #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    font-family: Arial, sans-serif;
}

.loading-text {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Loading bar */
.loading-bar {
    width: 80%;
    max-width: 600px;
    height: 20px;
    background: #444;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #fff;
}

.loading-progress {
    height: 100%;
    width: 0;
    background: #ff0000;
    transition: width 0.2s ease;
}

.loading-percentage {
    margin-top: 10px;
    font-size: 1.2em;
}


.modal-footer .btn{
color: #fff;
background-color: #ff0000;
font-weight: 500;
border: #000 solid 1px;
border-radius: 8px;
}

.modal-footer .btn:hover{
    color: #ff0000;
    background-color: #fff;
    font-weight: 500;
    }</pre></body></html>