/* overview.html专用筛选条件点击效果样式 */
/* 筛选选项点击效果增强 */
.filter-option {
    transition: all 0.2s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.filter-option:active {
    transform: scale(0.95) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

/* 优化悬停效果 */
.filter-option:hover:not(.active) {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15) !important;
}

/* 增强激活状态视觉反馈 */
.filter-option.active {
    position: relative !important;
}

.filter-option.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

/* 展开按钮点击效果 */
.expand:active {
    transform: scale(0.95) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}