/* Filter tabs styling */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-tab {
    padding: 8px 16px;
    border: none;
    border-radius: 30px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-tab i {
    font-size: 12px;
}

.filter-tab:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

/* Amount styling */
.amount-positive {
    color: #10b981;
    font-weight: 600;
}

.amount-negative {
    color: #ef4444;
    font-weight: 600;
}

/* Commission chip */
.commission-chip {
    background: linear-gradient(135deg, #f97316 0%, #f43f5e 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .galti{

            display: grid !important;
        }
    .filter-tab {
        white-space: nowrap;
    }
    
    .business-summary-grid {
        grid-template-columns: 1fr;
    }
}