/* === Fluent Forms Field Styling === */
.ff-el-group input,
.ff-el-group textarea,
.ff-el-group select {
	background-color: #000;
	color: #fff;
	border: 1px solid #D4AF37;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 1rem;
}

/* === Fluent Forms Label Styling === */
.ff-el-group label {
	color: #fff;
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: block;
}

/* === Radio & Checkbox Styling === */
.ff-el-group input[type="radio"]:checked+label,
.ff-el-group input[type="checkbox"]:checked+label {
	background-color: #D4AF37;
	color: #000;
	border-radius: 6px;
	padding: 4px 10px;
}

/* === Fluent Forms Submit Button Styling === */
.ff-btn-submit {
	background: linear-gradient(135deg, #D4AF37, #b8860b) !important;
	color: #000 !important;
	font-weight: bold;
	font-size: 1rem;
	padding: 12px 32px !important;
	border: none;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hover state */
.ff-btn-submit:hover {
	background: linear-gradient(135deg, #b8860b, #D4AF37) !important;
	color: #fff !important;
	transform: scale(1.05);
}

/* Optional: Remove default box shadows */
.ff-el-group {
	box-shadow: none !important;
}

.frm-fluent-form .choices__list--dropdown .choices__item--selectable {
	padding-right: 100px;
	background-color: #333;
}

.frm-fluent-form .choices[data-type*="select-multiple"] .choices__input {
	background: #000 !important;
}

.frm-fluent-form .choices__list--dropdown .choices__item--selectable.is-highlighted {
	background-color: #8f800c !important;
}

.frm-fluent-form .choices__inner {
	background: #000 !important;
}