/* USafe Loader — branded spinner */
#load {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

#load.show, #load[style*="block"] {
    display: flex !important;
}

#load::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #e4e4e4;
    border-top-color: #f5b700;
    border-radius: 50%;
    animation: usafe-spin 0.7s linear infinite;
}

@keyframes usafe-spin {
    to { transform: rotate(360deg); }
}
