
/* Section 2: Stats (Stacked on mobile, side-by-side on desktop) */
.stats-main {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px dotted var(--border-color);
    border-bottom: 1px dotted var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.val {
    font-size: 1.25rem;
    font-weight: 800;
}

.val.usd {
    color: var(--accent-color);
}
.val.eur {
    color: var(--accent-euro);
}
.val.count {
    color: var(--text-secondary);
}

/* Desktop Polish (Tablets and Up) */
@media (min-width: 768px) {
    .stats-main {
        display: flex;
        gap: 3rem;
        border: none;
        padding: 0;
    }

    .val {
        font-size: 1.6rem;
    }

}

/* Styling the Select Dropdown to match your font system */
#sectorFilter {
    background-color: var(--bg-card); /* Assuming you have a card bg var */
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    width: 100%;
}

/* Styling the options inside the dropdown */
#sectorFilter option {
    background-color: var(--bg-color);
}

/* If you want the label inside the Filter Card to match others */
.stat-item.filter-card .stat-label {
    margin-bottom: 8px;
    display: block;
}
