.tablepress-filters-wrapper {
    margin-bottom: 20px;
}

.tp-filters-container {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.tp-filter-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.tp-filter-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

.tp-filter {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.tp-filter:hover,
.tp-filter:focus {
    border-color: #0073aa;
    outline: none;
}

.tp-reset-filters {
    padding: 8px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    height: fit-content;
}

.tp-reset-filters:hover {
    background: #005177;
}

.tp-row-count {
    color: #666;
    font-size: 13px;
    margin-left: auto;
    align-self: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .tp-filters-container {
        flex-direction: column;
    }
    
    .tp-filter-group {
        width: 100%;
    }
    
    .tp-reset-filters {
        width: 100%;
    }
} 