.count-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.count-row .count-box { 
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    line-height: 1.0rem;
    text-align: center;
    padding: 5px;
    /* border: 1px solid var(--fw-white-250); */
    border-radius: 5px;
    min-height: 60px;
}

.count-row .count-title {
    font-size: 0.6rem;
    margin-bottom: 7px;
    color: var(--fw-black-500);
    font-weight: bold;
}

.count-row .large-count {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 3px;
    color: var(--fw-black-350);
}

.count-row .small-count-pos {
    font-size: 0.6rem;
    font-weight: bold;
    color: var(--static-green-300);
}
.count-row .small-count-neg {
    font-size: 0.6rem;
    font-weight: bold;
    color: var(--static-red-300);
}

.count-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.count-tooltip div {
    margin: 2px 0;
}
