.cppb-wrapper {
    width: 100%;
}

.cppb-search-area {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cppb-search-area input[type="text"] {
    width: 320px;
    max-width: 100%;
    padding: 10px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    box-sizing: border-box;
}

.cppb-search-area button {
    padding: 10px 18px;
    cursor: pointer;
}

#cppb-active-filter {
    margin-bottom: 20px;
}

.cppb-filter-tag {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.cppb-filter-tag a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-left: 8px;
}

.cppb-product {
    margin-bottom: 35px;
}

.cppb-product-title {
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    font-size: 24px;
}

.cppb-table {
    width: 100%;
    border-collapse: collapse;
}

.cppb-table th,
.cppb-table td {
    padding: 12px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.cppb-table th {
    background: #f7f7f7;
    font-weight: 600;
}

.cppb-table tr:nth-child(even) {
    background: #fafafa;
}

.cppb-table .button {
    white-space: nowrap;
}

.cppb-no-results {
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .cppb-search-area {
        flex-direction: column;
    }

    .cppb-search-area input[type="text"] {
        width: 100%;
    }

    .cppb-search-area button {
        width: 100%;
    }

    .cppb-table {
        display: block;
        overflow-x: auto;
    }
}