.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.portfolio-filter hr {
    width: 1px;
    background-color: var(--sv-primary) !important;
    height: 40px;
    margin: 0 10px 0 15px !important;
}

.portfolio-filter .clear-filters {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
    margin-left: 10px;
    transition: color 0.3s ease;
    box-shadow: none;
}

.portfolio-filter .clear-filters:hover {
    color: #666;
}

.status-filter-toggles {
    display: flex;
    gap: 10px;
}

.status-toggle {
    white-space: nowrap;
    background-image: none !important;
    padding: 0 20px !important;
    height: 40px;
    font-weight: 400;
}

.status-toggle.active {
    background-color: var(--sv-primary) !important;
    color: #fff !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .portfolio-filter {
        flex-wrap: wrap;
    }

    .portfolio-filter hr {
        display: none;
    }
    
    .status-filter-toggles {
        flex-wrap: wrap;
    }
    
    .status-toggle {
        flex: 1;
        min-width: auto;
        text-align: center;
    }
}
