html {
  box-sizing: border-box
}

*,*:before,*:after {
  box-sizing: inherit
}

/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

nav {
  display: block;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: white;
  margin:0;
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

p {
  font-size: 12pt;
  color: #000000;
}

h1 {
  color: #000000;
}

/* .header {
  background-color: #f1f1f1;
  color: #000000;
} */

.logo {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  /* Add your logo image URL here */
  background: url('../img/Munchkin.png') no-repeat center center;
  background-size: cover;
}

.header {
  background-color: white; /* Header background color */
  color: #000000; /* Text color */
  padding: 10px; /* Padding for the header */
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-end; /* Align items to the bottom */
}

.footer {
  background-color: #9e9e9e;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* This is the row to column styling */
.row {
	display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */	
}

.col-left {	
	text-align: center; /* Center the image horizontally */
	padding: 15px;
}
.col-right {	
	flex: 2; /* Takes 1/3 of the available width */
	padding: 15px;
}
/* For mobile phones: */
@media only screen and (max-width: 768px) {
  .row {
    flex-direction: column; /* Stack elements vertically on smaller screens */
		width: 95%;
  }

  [class*="col-"] {
    width: 100%;
  }
 
}

/* .image {
  max-width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  } */

.image {
  max-width: 100%;
  height: auto;
  /* text-align: left; */
  align-self: flex-start; /* Align the image to the left */
}

img {
  border-style: none;
  /* vertical-align: middle; */
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  /* background-color: #333; */
  background-color: #007762;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav .search-container {
  float: right;
}

.topnav input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}

.topnav .search-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.topnav .search-container button:hover {
  background: #ccc;
}

.imgcenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-price {
  float: left;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

#carttable {
  font-family: "Raleway", sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#carttable td,
#carttable th {
  border: 1px solid #616161;
  padding: 8px;
}

#carttable tr:nth-child(even) {
  background-color: #ddd;
}

#carttable tr:hover {
  background-color: #C8B4BA;
}

#carttable th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #909090;
  color: white;
  /*background-color: #4CAF50;
    color: black;*/
}

#carttable td {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  /* background-color: #CICD97; */
  color: black;
}

.checked {
  color: orange;
}

p.display {
  text-indent: 15px;
}

.userAuth {
  /* background-color: #f1f1f1; */
  text-align: right;
  padding: 0px 5px 5px;
}

/* this is for modal login popup */
.login-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.reg-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.close-btn {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff0000;
  /* Red background color */
  color: #ffffff;
  /* White text color */
  border: none;
  /* No border */
  padding: 10px;
  /* Add padding to the button */
  font-size: 16px;
  /* Set font size */
  font-weight: bold;
  /* Set font weight to bold */
  border-radius: 5px;
  /* Add border-radius for rounded corners */
}

/* .login-button {
  background-color: whitesmoke;  
  color: black; 
  padding: 5px 10px;  
  border: 1; 
  border-color: #007762;
  border-radius: 5px;  
  cursor: pointer;
  font-size: 16px;  
} */

.login-button {
  background-color: #4caf50;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* Additional styles for hover effect */
.login-button:hover {
  background-color: #C8B4BA;
  /* Lighter shade on hover */
}

/* Style for the dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style for the dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #FFFFFF;
  background-color: inherit;
  margin: 0;
  padding: 14px 16px;
  cursor: pointer;
}

/* Style for the dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #007762;
  /* Background color for the dropdown menu */
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Style for the dropdown links */
.dropdown-content a {
  float: none;
  color: #FFFFFF;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Change color on hover for the dropdown links */
.dropdown-content a:hover {
  background-color: #00A896;
  /* Lighter shade on hover */
}

/* Show the dropdown content when hovering over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

.content {
  max-width: 600px; 
  margin: 0 auto; 
  padding: 20px;
}

.carousel {
  max-width: 100%; /* Set the maximum width for the carousel */
}

.carousel-inner {
  text-align: center; /* Center the images within the carousel */
}

.carousel-item img {
  max-width: 100%; /* Ensure images don't exceed the width of the carousel container */
  height: auto; /* Maintain image aspect ratio */
  margin: 0 auto; /* Center the image within the carousel item */
}