/* Styles for the overlay background */
#repeat-order-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 100;
}

/* Styles for the popup */
#repeat-order-popup {
	position: relative;
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	max-width: 400px;
	width: 100%;
	z-index: 101;
}

/* Styles for the buttons */
#repeat-order-popup-buttons {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

#repeat-order-popup-buttons button {
	margin: 0 10px;
	padding: 10px 20px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	font-size: 16px;
}

#repeat-order-popup-buttons button:hover {
	background-color: #ddd;
}