body {
	background-color: #f4f6f9;
}

.container {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pos-container {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 50px auto;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.products, .checkout {
	flex: 1;
	padding: 20px;
}

h2 {
	border-bottom: 2px solid #333;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.product-btn, .checkout-btn {
	display: block;
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	background-color: #007BFF;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.product-btn:hover, .checkout-btn:hover {
	background-color: #0056b3;
}

.checkout-list {
	list-style-type: none;
	padding: 0;
	margin-bottom: 20px;
}

.total {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 20px;
}
.red-topbar {
	height: 20px;
	background-color: #182681;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;  /* Ensure it's above other content */
}
.content-with-overlay {
	position: relative;
	background: url('image.jpg') no-repeat center center;
	background-size: cover;
	height: 100%; /* Adjust as needed */
	width: 100%;
	overflow: hidden;
}

.content-with-overlay::before {
	content: "";
	background-color: #182681;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom-left-radius: 50% 20%; /* Adjust the second value to change the curve */
	border-bottom-right-radius: 50% 20%; /* Adjust the second value to change the curve */
	opacity: 0.1; /* Adjust for desired overlay transparency */
}
.img-container {
	width: 300px;
	height: 189px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.img-container img {
	max-width: 20%;
	max-height: 20%;
	display: block;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.green {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

