/**
 * Global loading spinner styles
 * Minimal style - spinner in the bottom-left corner
 */
#global-loading-spinner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999; /* Above all UI elements */
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.7; /* Match tool container opacity */
}

#global-loading-spinner .spinner-border {
    width: 1.5rem;
    height: 1.5rem;
}
