.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: dzreg-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}
@keyframes dzreg-spin {
    to {
        transform: rotate(360deg);
    }
}

.dzreg-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dzreg-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dzreg-spinner {
    background: white;
    padding: 2rem 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.dzreg-spinner-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 165, 92, 0.3);
    border-top-color: #c9a55c;
    border-radius: 50%;
    animation: dzreg-spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

.dzreg-spinner-text {
    color: #374151;
    font-size: 1rem;
}