.fldtyelf-filter-wrap {
	margin: 0 0 24px;
	padding: 16px;
	border: 1px solid #dfe3e8;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
}

.fldtyelf-title {
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.fldtyelf-filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.fldtyelf-field label {
	display: block;
	margin: 0 0 6px;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	color: #0cc0df;
}

.fldtyelf-field input,
.fldtyelf-field select {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #c7ced6;
	border-radius: 12px;
	background: #ffffff;
	font: inherit;
	box-sizing: border-box;
}

.fldtyelf-field select[multiple] {
	min-height: 132px;
}

.fldtyelf-help {
	margin-top: 6px;
	font-size: 0.75rem;
	line-height: 1.4;
	color: #5b6470;
}

.fldtyelf-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: end;
}

.fldtyelf-button {
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.fldtyelf-button-primary {
	background: #0e3a79;
	color: #ffffff;
}

.fldtyelf-button-secondary {
	background: #eef2f6;
	color: #16202a;
}

.fldtyelf-message {
	margin-top: 10px;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #4b5563;
}

.fldtyelf-filter-wrap.is-loading {
	opacity: 0.9;
}

.fldtyelf-is-loading {
	opacity: 0.55;
	transition: opacity 0.2s ease;
}

.fldtyelf-field.fldtyelf-field-tags {
	display: none;
}

@media (max-width: 767px) {
	.fldtyelf-filter-wrap {
		padding: 14px;
		border-radius: 16px;
	}

	.fldtyelf-filter-row {
		grid-template-columns: 1fr;
	}

	.fldtyelf-actions {
		width: 100%;
	}

	.fldtyelf-button {
		flex: 1 1 auto;
		justify-content: center;
	}
}