

.stats-btn
{
    background-color: #ff7f00;
    color: White;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.stats-btn:hover
{
    background-color: rgba(255, 165, 0, 0.25);
    color: #e67300;
}

.stats-btn.active
{
    background-color: #ff7f00;
    color: #fff;
}




.btn-orange
{
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.btn-orange:hover
{
    opacity: .95;
}
