/* My-Stay Food Ordering – frontend stilovi */

.msfo-widget {
	max-width: 420px;
	margin: 1em 0;
	font-size: 16px;
	line-height: 1.4;
}

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

.msfo-input-wrap {
	position: relative;
}

.msfo-input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 16px; /* >=16px sprječava zoom na iOS-u */
	border: 1px solid #c9ccd1;
	border-radius: 8px;
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.msfo-input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba( 37, 99, 235, .15 );
}

.msfo-suggestions {
	position: absolute;
	z-index: 9999;
	left: 0;
	right: 0;
	top: calc( 100% + 4px );
	margin: 0;
	padding: 4px;
	list-style: none;
	background: #fff;
	border: 1px solid #d7d9dd;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba( 0, 0, 0, .12 );
	max-height: 280px;
	overflow-y: auto;
}

.msfo-suggestion {
	padding: 10px 12px;
	border-radius: 6px;
	cursor: pointer;
}

.msfo-suggestion:hover,
.msfo-suggestion.is-active {
	background: #eef2ff;
}

.msfo-empty {
	padding: 10px 12px;
	color: #6b7280;
	cursor: default;
}

.msfo-action {
	margin-top: 14px;
}

.msfo-button {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 14px 18px;
	background: #16a34a;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: background .15s ease;
}

.msfo-button:hover,
.msfo-button:focus {
	background: #15803d;
	color: #fff;
}
