.filter-sidebar {
    width: 250px;
    flex: 2;
    padding: 20px;
    /*background-color: #f9f9f9;*/
    border-right: 0px solid #e0e0e0;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    /*border-radius: 8px;*/
}

.filter-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.checkbox-option, .radio-option {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.checkbox-option input, .radio-option input {
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-option label, .radio-option label {
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.apply-filter-btn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.apply-filter-btn:hover {
    background-color: #0056b3;
}

.reset-filter-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}
.reset-filter-btn:hover {
    text-decoration: underline;
}