.dashboard-filter-info {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.dashboard-filter-info__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #64748b;
    cursor: pointer;
}

.dashboard-filter-info__button:hover {
    background: #e2e8f0;
    color: #334155;
}

.dashboard-filter-info__button:focus {
    outline: 3px solid rgba(59, 130, 246, .28);
    outline-offset: 2px;
}

.dashboard-filter-info__tooltip {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 6px);
    left: 50%;
    display: none;
    width: 280px;
    max-width: calc(100vw - 24px);
    padding: 9px 10px;
    border-radius: 7px;
    background: #334155;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    transform: translateX(-50%);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .18);
}

.dashboard-filter-info__tooltip::before {
    position: absolute;
    top: -5px;
    left: var(--tooltip-arrow-left, 50%);
    width: 10px;
    height: 10px;
    background: #334155;
    content: '';
    transform: translateX(-50%) rotate(45deg);
}

.dashboard-filter-info__tooltip.is-open {
    display: block;
}

.dashboard-filter-label {
    display: flex;
    align-items: center;
    gap: 4px;
}
