﻿/* Menu Filter Styles */
#lstTainguyen .list-group-item,
#lstDangtl .list-group-item,
#lstTacgia .list-group-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

    #lstTainguyen .list-group-item:hover,
    #lstDangtl .list-group-item:hover,
    #lstTacgia .list-group-item:hover {
        background-color: #e9ecef;
        transform: translateX(2px);
    }

    #lstTainguyen .list-group-item.active,
    #lstDangtl .list-group-item.active,
    #lstTacgia .list-group-item.active {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

        #lstTainguyen .list-group-item.active .badge,
        #lstDangtl .list-group-item.active .badge,
        #lstTacgia .list-group-item.active .badge {
            background-color: white !important;
            color: #0d6efd !important;
        }

.stat-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
    }

.facet-item {
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

    .facet-item:hover {
        background-color: #f8f9fa !important;
        border-left-color: #0d6efd;
        transform: translateX(2px);
    }

    .facet-item.active {
        background-color: #0d6efd !important;
        color: white !important;
        border-left-color: #0b5ed7;
    }

        .facet-item.active .badge {
            background-color: white !important;
            color: #0d6efd !important;
        }

.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#active-filters .badge {
    cursor: pointer;
    transition: all 0.2s;
}

    #active-filters .badge:hover {
        transform: scale(1.05);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
