.bwf-feedback-container {
	max-width: 700px;
	margin: 20px auto;
}

.bwf-feedback-container[dir="rtl"] {
	text-align: right;
}

#bwf-feedback-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.bwf-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.bwf-field input[type="text"],
.bwf-field input[type="email"],
.bwf-field input[type="tel"],
.bwf-field select,
.bwf-field textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 1em;
	font-family: inherit;
}

.bwf-field textarea {
	min-height: 100px;
	resize: vertical;
}

.bwf-radio-group {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.bwf-radio-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: normal !important;
}

/* Star rating */
.bwf-star-rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 4px;
}

.bwf-star-rating input {
	display: none;
}

.bwf-star-rating label {
	font-size: 2em;
	color: #ddd;
	cursor: pointer;
	transition: color 0.15s;
	margin: 0;
}

.bwf-star-rating input:checked ~ label,
.bwf-star-rating:hover input ~ label:hover,
.bwf-star-rating:hover input ~ label:hover ~ label {
	color: #ffc107;
}

.bwf-required {
	color: #b32d2e;
}

#bwf-feedback-submit-btn {
	padding: 14px 20px !important;
	border: none !important;
	border-radius: 8px !important;
	background: var(--bwf-button-color, #785D46) !important;
	background-color: var(--bwf-button-color, #785D46) !important;
	color: #fff !important;
	font-size: 1.1em;
	font-weight: bold;
	cursor: pointer;
	transition: filter 0.2s;
	width: auto;
}

#bwf-feedback-submit-btn:hover {
	filter: brightness(0.92);
}

#bwf-feedback-submit-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.bwf-form-message {
	color: #b32d2e;
	font-weight: bold;
}

#bwf-feedback-confirmation {
	padding: 30px;
	border-radius: 8px;
	background: #f0f5ff;
	border: 1px solid #b3cfff;
	text-align: center;
}

.bwf-error {
	color: #b32d2e;
	font-weight: bold;
}
