 /* Loader styles */
 #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
}

#loader {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: red;
    animation: spin 0.02s linear infinite; /* Extremely fast rotation */
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loaded #loader-wrapper {
    opacity: 0;
    visibility: hidden;
}