.input-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Hide the default checkbox */
.ingredient-checkbox:checked+label .custom-checkbox {
	background-color: gray;
	border-color: gray;
}

.ingredient-checkbox:checked+label .custom-checkbox:before {
	content: '\2713';
	/* Unicode checkmark */
	display: block;
	color: white;
	font-size: 0.75rem;
	text-align: center;
	line-height: 1rem;
}

/* Custom checkbox styling */
.custom-checkbox {
	position: relative;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background-color: white;
	border: 2px solid gray;
	border-radius: 0.25rem;
	box-sizing: border-box;
}

.custom-checkbox:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: none;
}

.ingredient-checkbox:checked+label .custom-checkbox:before {
	display: block;
}

/* Styling for crossed-out ingredient labels */
.line-through {
	text-decoration: line-through;
}

.input-group input {
	flex: 1;
}

.recipe-card {
	border: 1px solid #E5E7EB;
	padding: 16px;
	border-radius: 8px;
	background-color: #F9FAFB;
}

.dropdown-menu {
	position: absolute;
	display: none;
	max-width: 100%;
	box-sizing: border-box;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 0.375rem 0.375rem;
	z-index: 100;
	border: 1px solid #ccc;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-item {
	padding: 8px 16px;
	cursor: pointer;
	white-space: nowrap;
	}
	
	.dropdown-item:hover {
		background-color: #F3F4F6;
	}
	
	.image-container {
		position: relative;
		width: 100%;
		height: 60vh;
		/* Increase the height as needed */
		background-color: #e2e8f0;
		/* Matching gray color */
		border-radius: 0.375rem;
		/* Rounded corners */
		display: flex;
		align-items: center;
		justify-content: center;
}

.image-preview {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Ensure the image covers the container without distortion */
	display: none;
	/* Hide initially */
	border-radius: 0.375rem;
	/* Match rounded corners */
}

.button-container {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
}
/* Add this to your CSS file */
.bg-yellow-100 {
	background-color: #fefcbf;
	/* Light yellow color */
}