@layer components {
    .dashboard-section-nav {
            align-items: center;
            display: flex;
            flex: 1 1 auto;
            justify-content: flex-end;
            min-width: 0;
            overflow: hidden;
            width: 100%;
        }

    .dashboard-section-nav__list {
            gap: 0.5rem;
            position: relative;
        }

    .dashboard-section-nav__item {
            align-items: center;
            background: var(--dashboard-color-pill);
            border: 0;
            border-radius: var(--dashboard-radius-pill);
            color: var(--dashboard-color-text-muted);
            display: inline-flex;
            flex-shrink: 0;
            font-size: 0.875rem;
            font-weight: 650;
            justify-content: center;
            line-height: 1.25rem;
            padding: 0.5rem 0.875rem;
            position: relative;
            text-decoration: none;
            white-space: nowrap;
            z-index: 0;
        }

    .dashboard-section-nav__item:hover {
            background: var(--dashboard-color-pill-hover);
            color: var(--dashboard-color-text);
        }

    .dashboard-section-nav__item:focus-visible {
            box-shadow: 0 0 0 3px rgb(var(--dashboard-color-brand-rgb) / 0.18);
            outline: 2px solid rgb(var(--dashboard-color-brand-rgb) / 0.55);
            outline-offset: 2px;
        }

    .dashboard-section-nav__item--active,
        .dashboard-section-nav__item--active:hover {
            background: var(--dashboard-color-text);
            color: #ffffff;
        }

    @media (min-width: 64rem) {
        .dashboard-section-nav__item:first-child {
                    margin-left: auto;
                }
    }

}
