.apf-11884-wrapper {
	width: 100%;
}

/* Filters */
.apf-11884-filters {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
}

.apf-11884-filter-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.apf-11884-filter-group label {
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

/* Buttons */
.apf-11884-btn-group {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.apf-11884-filter-btn {
	padding: 8px 16px;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s;
	font-size: 14px;
}

.apf-11884-filter-btn.active {
	background-color: #0073e6; /* Fallback */
	color: white;
	border-color: transparent;
}

/* Selects */
.apf-11884-select {
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	min-width: 200px;
}

/* Grid */
.apf-11884-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

/* Cards */
.apf-11884-card {
	background: #fff;
	border: 1px solid #eee;
	padding: 20px;
	border-radius: 8px;
	position: relative;
	transition: transform 0.2s;
}

.apf-11884-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.apf-11884-card-title {
	margin: 10px 0;
	font-size: 18px;
}

.apf-11884-meta {
	font-size: 12px;
	color: #777;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.apf-11884-badge {
	display: inline-block;
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 10px;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 5px;
}

.status-approved {
	background-color: #e6fffa;
	color: #00a0dd;
}

.status-closed {
	background-color: #fff5f5;
	color: #e53e3e;
}

.apf-11884-link {
	display: inline-block;
	margin-top: 15px;
	text-decoration: none;
	color: #0073e6;
	font-weight: 500;
}
