/* --- ADMIN PRELOADER --- */
#prm-admin-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prm-loader-content { text-align: center; }
.prm-loader-logo span { font-size: 48px; color: #2271b1; }
.prm-loader-text { margin-top: 15px; color: #666; font-size: 12px; letter-spacing: 1px; }

/* Spinner Animation */
.prm-spinner > div {
    width: 10px; height: 10px;
    background-color: #2271b1;
    border-radius: 100%;
    display: inline-block;
    animation: prm-bouncedelay 1.4s infinite ease-in-out both;
}
.prm-spinner .bounce1 { animation-delay: -0.32s; }
.prm-spinner .bounce2 { animation-delay: -0.16s; }
@keyframes prm-bouncedelay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

/* --- FRONTEND PRELOADER (Simple Fade) --- */
#prm-front-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}