.StatementPeriodRangeSwitcher {
    z-index: 3;

    // The trigger always carries a selected range, so the suite marks it
    // "filled" (blue). Render it like the sibling compact filter pills instead:
    // a transparent, outlined pill.
    .SuiteSelect-input-filled,
    .SuiteSelect-input-filled:focus {
        background-color: transparent;
    }

    &-header {
        align-items: center;
        display: flex;
        gap: 8px;
        width: 100%;
    }

    &-mode-switcher.SegmentedButton {
        margin-left: 12px;
    }

    .SuiteListView-aside {
        width: 210px;
    }

    &-input {
        flex: 1;
    }

    &-input-field {
        &.is-focused,
        &.is-focused input {
            border-color: var(--midnight-750);
            box-shadow: none;
        }
    }

    &-footer {
        align-items: center;
        border-top: 1px var(--dividers-default) solid;
        display: flex;
        justify-content: space-between;
        padding: 12px 0 0;
    }

    .SuiteListView-option.highlight {
        background: linear-gradient(
            90deg,
            var(--midnight-100, #deedf7) 0%,
            #fff 100%
        ) !important;
        font-weight: 500;
    }
}

.CompactSelectValue {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;

    // Match the compact filter placeholder (text-body-bold + --text-secondary).
    color: var(--text-secondary);
    font-weight: 500;

    &-subtext {
        font-weight: 400;
        font-size: 12px;
    }
}
