/* Filter Card Styling */
.filter-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-buttons .c-btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
}

.c-btn.btn-outline {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
}

.c-btn.btn-outline:hover {
    border-color: #1FB6A6;
    color: #1FB6A6;
    background: transparent;
}

/* Results Info */
.results-info p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* Sort Wrapper */
.sort-wrapper {
    display: flex;
    justify-content: flex-end;
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-control label {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.sort-control select {
    width: auto;
    min-width: 200px;
    height: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 15px;
}

/* No Results */
.no-results-wrapper {
    text-align: center;
    padding: 80px 20px;
}

.no-results-wrapper i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results-wrapper h3 {
    margin-bottom: 10px;
    color: #333;
}

.no-results-wrapper p {
    color: #666;
}

.no-results-wrapper a {
    color: #1FB6A6;
    text-decoration: none;
}

.no-results-wrapper a:hover {
    text-decoration: underline;
}

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 30px;
}

.pagination {
    margin: 0;
}

.page-item {
    margin: 0 3px;
}

.page-link {
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 10px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.page-link:hover {
    background: #1FB6A6;
    border-color: #1FB6A6;
    color: #fff;
}

.page-item.active .page-link {
    background: #1FB6A6;
    border-color: #1FB6A6;
    color: #fff;
}

.page-item.disabled .page-link {
    background: transparent;
    border-color: transparent;
    color: #ccc;
}

.pagination-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .sort-wrapper {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-buttons .c-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .filter-card {
        padding: 20px;
    }

    .sort-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .sort-control select {
        width: 100%;
    }

    .results-info {
        margin-bottom: 15px;
    }
}
