.mx-results-table th {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}
.mx-results-table td {
    font-size: 14px;
    color: #1e293b;
}
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #3b82f6;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
