.ewlf-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	box-sizing: border-box;
	background-color: #f9f9f9;
	padding: 24px;
	border-radius: 8px;
}

.ewlf-form-title {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 6px;
}

.ewlf-form-subtitle {
	font-size: 14px;
	text-align: center;
	margin-bottom: 18px;
}

.ewlf-fields-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	width: 100%;
	margin-bottom: 16px;
}

.ewlf-field-group {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ewlf-field-label {
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
}

.ewlf-field-label.ewlf-label-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ewlf-required {
	color: #d32f2f;
}

.ewlf-input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #cccccc;
	border-radius: 6px;
	font-size: 14px;
	background-color: #ffffff;
	transition: border-color 0.2s ease;
}

.ewlf-input:focus {
	outline: none;
	border-color: #25D366;
}

textarea.ewlf-input {
	resize: vertical;
}

.ewlf-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	border: none;
	background-color: #25D366;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 6px;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.ewlf-submit-btn:hover {
	background-color: #1DA851;
}

.ewlf-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.ewlf-message {
	font-size: 14px;
	margin-bottom: 12px;
	padding: 10px 12px;
	border-radius: 6px;
}

.ewlf-message.ewlf-success {
	color: #1DA851;
	background-color: rgba(29, 168, 81, 0.1);
}

.ewlf-availability-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	margin: 0 auto 16px auto;
	background-color: #ffffff;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ewlf-availability-badge svg {
	flex-shrink: 0;
	fill: #1DA851;
}

.ewlf-message.ewlf-error {
	color: #d32f2f;
	background-color: rgba(211, 47, 47, 0.1);
}

.ewlf-bottom-text {
	display: block;
	text-align: center;
	margin-top: 14px;
	font-weight: 700;
	text-decoration: none;
	color: inherit;
}

.ewlf-bottom-text:hover {
	text-decoration: underline;
}

/* מובייל */
@media (max-width: 480px) {
	.ewlf-form {
		padding: 16px;
	}

	.ewlf-fields-grid {
		grid-template-columns: 1fr !important;
	}
}
