/* TELJES KÉPERNYŐS OVERLAY */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* ELTŰNÉS */
#loader.hide {
    opacity: 0;
    pointer-events: none;
}

/* PROGRESS BAR KERET */
.progress-container {
    width: 60%;
    max-width: 500px;
    height: 14px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

/* PROGRESS BAR TÖLTÉS */
.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #3498db, #4aa3ff);
    transition: width 0.2s ease;
}

/* SZÁZALÉK */
#percent {
    margin-top: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* LOGÓ (opcionális) */
#loader-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #3498db;
}
