/**
 * iCAT Integration - Frontend Styles
 */

/* Already inline in user-dashboard.php for simplicity */
/* Additional custom styles can be added here */

.icat-loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner.is-active {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #0073aa;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}