.rt-dashboard-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: .35rem;
    width: 100%;
    overflow-x: auto;
    padding: .25rem 0 .5rem;
    scrollbar-width: thin;
}

.rt-dashboard-tile {
    flex: 1 1 0;
    min-width: 0;
    min-height: 72px;
    padding: .55rem .7rem;
    border: 1px solid #d8dee6;
    border-radius: .5rem;
    background: #fff;
    color: #25313c;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.rt-dashboard-tile:hover,
.rt-dashboard-tile:focus-visible {
    border-color: #8aa8c4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    outline: none;
}

.rt-dashboard-tile:active {
    transform: translateY(1px);
}

.rt-dashboard-tile.is-selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, .16);
}

.rt-dashboard-tile--danger {
    border-color: #f0b8bd;
    background: #fff7f8;
    color: #a21f2d;
}

.rt-dashboard-tile--danger.is-selected {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, .14);
}

.rt-dashboard-tile-name,
.rt-dashboard-tile-count {
    display: block;
}

.rt-dashboard-tile-name {
    min-height: 2.2em;
    font-size: clamp(.72rem, .9vw, .9rem);
    font-weight: 600;
    line-height: 1.1;
}

.rt-dashboard-tile-count {
    margin-top: .25rem;
    font-size: clamp(1.05rem, 1.6vw, 1.45rem);
    font-weight: 700;
    line-height: 1;
}

.rt-dashboard-arrow,
.rt-dashboard-separator {
    flex: 0 0 auto;
    align-self: center;
}

.rt-dashboard-arrow {
    color: #75808b;
    font-size: 1.25rem;
    line-height: 1;
}

.rt-dashboard-separator {
    width: 1px;
    height: 48px;
    margin: 0 .15rem;
    background: #d8dee6;
}

[data-rt-dashboard].is-loading {
    opacity: .65;
    pointer-events: none;
}

@media (max-width: 900px) {
    .rt-dashboard-tile {
        min-width: 105px;
    }
}
