/*
 * Action-button utility styles.
 *
 * Loaded globally via `templates/layout/partials/styles.html`. Keep narrowly
 * scoped to action-button concerns — visual conventions for icon-strip and
 * dropdown-item action elements emitted by the `{% action_icon %}` /
 * `{% action_item %}` Django tags and `window.WatervizeActions.*` JS helper.
 */

/*
 * Fixed-width icon column inside dropdown items.
 *
 * Replaces the inline `style="width: 16px;"` previously hardcoded in
 * `_action_dropdown_item.html` and `action-buttons.js`. Keeping the icons a
 * uniform 1rem wide aligns labels across menu items even when icons have
 * different intrinsic widths.
 */
.wv-action-item-icon {
    width: 1rem;
    display: inline-block;
    text-align: center;
}
