.found-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
}
.location-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
}
.location-label { color: var(--text-secondary); }
.location-city { color: var(--primary); font-weight: 500; cursor: pointer; }
.view-toggle {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.toggle-btn {
    padding: 6px 16px;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}
.toggle-btn.active {
    background: var(--primary-dark);
    color: white;
    border-radius: 20px;
}
.divider-line {
    height: 1px;
    background: var(--border-color);
}
/* 重置所有可能的默认样式 */
.filter-bar {
  width: 100%;
  box-sizing: border-box;      /* 确保内边距不影响宽度计算 */
}

.filter-item {
  padding: 0;                  /* 清空所有内边距 */
  margin: 0;                   /* 清空所有外边距 */
  border: none;                /* 移除边框（如果有） */
}
.filter-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.filter-item select {
    appearance: none;
    -webkit-appearance: none;
    background: #f5f5f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 5px 28px 5px 12px;
    font-size: 0.8rem;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.filter-item select:focus {
    border-color: var(--primary);
}
