/* styles/loader.css - Add to your existing style.css */
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.global-loader.with-backdrop {
    background-color: rgba(255, 255, 255, 0.8);
}

.global-loader.loader-hide {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    display: flex;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

