.toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--gap-md);
    margin: 12px 0;
    flex-wrap: wrap;
}

.field {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-sm);
}

/* .field>label {
    white-space: nowrap;
    color: #374151;
    font-size: 14px;
} */

.field > label {
  white-space: nowrap;
  color: #374151;
  font-size: 16px; /* ← 从14px放大 */
  font-weight: bold; /* ← 可选，视觉更明显 */
}

.input {
    height: 30px;
    padding: 4px 8px;
}