/* ============================================
   SPINNERS - Loading States
   Bolivia Import Manager
   ============================================ */

/* Base Spinner */
.bim-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--bim-primary);
    border-radius: 50%;
    animation: bimSpin 0.8s linear infinite;
    min-height: 20px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Small Spinner (for buttons) */
.bim-spinner-small {
    width: 20px;
    height: 20px;
    border-width: 3px;
}

/* Content Loading State */
.bim-content-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}

.bim-content-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
    border-radius: var(--bim-radius-lg);
}

/* Spinner Overlay */
.bim-content-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 30px 40px;
    border-radius: var(--bim-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.bim-content-spinner span {
    font-size: 14px;
    color: var(--bim-secondary);
    font-weight: 500;
}
