.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.filter-panel {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    flex: 1;
    min-width: 300px;
}

.filter-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.filter-title i {
    font-size: 20px;
    margin-right: 10px;
    color: #3498db;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.range-inputs {
    display: flex;
    gap: 15px;
}

.input-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

input,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}