/* ==========================================================================
   Speedy Admin — Performance page
   ========================================================================== */

/* Action cluster on the right side of a card head (select + buttons) */
.head-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Compact inline control, matches toolbar inputs */
.input-sm {
    width: auto;
    padding: 6px 10px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.45;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.input-sm:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Small inline spinner for the warm-up progress line */
.spinner-sm {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-width: 2px;
    vertical-align: -2px;
    margin-right: 6px;
}
