/*********************************************
 * Client Category Pill Styles
 *********************************************/
.client-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* centers the pill list */
}

/* Wrapper around each checkbox + label (interactive version) */
.client-category-filter-wrapper {
    display: flex;
    align-items: center;
	background-color: #e2f2f5;
	color: #333;
	padding: 8px 16px;
	border-radius: 10px;
	font-size: 14px;
	transition: background-color 0.3s ease;
	border:2px solid #000;
}
.client-category-filter-wrapper input[type="checkbox"]
{
	margin:5px;
	cursor: pointer;
}

.client-category-filter-wrapper label
{
	margin:5px;
	cursor: pointer;
}


/* Style the label to appear like a pill */
.client-category-pill {
    background-color: #e2f2f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: default;
    transition: background-color 0.3s ease;
	border:2px solid #000;
}

/* Provide a hover or focus effect if interactive */
.client-category-filter:focus + .client-category-pill,
.client-category-pill:hover {
    background-color: #cde0e3;
}

/*********************************************
 * Client List Styles
 *********************************************/
.client-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.client-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

.client-item h3 {
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

/*********************************************
 * Category Heading Style
 *********************************************/
.client-category-heading {
    text-align: center;
    margin-bottom: 20px;
}

/*********************************************
 * Pagination styles
 *********************************************/

.client-pagination {
    margin-top: 20px;
    text-align: center;
}

.client-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #e2f2f5;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
	border:2px solid #000;
	
}

.client-pagination .page-numbers.active {
    background: #333;
    color: #fff;
}
.client-pagination .page-numbers:focus, .client-category-filter-wrapper:focus-within {
    outline-offset: 0.2em;
    outline: 0.2em solid #bb3200;
    text-decoration: underline;
}