:root {
	--button-text-color: #486c6e;
	--button-bg-color: #d0c0ea;
  --section-bg-color: rgba(50, 143, 135, 0.212);
  --main-text-color: #486c6e;
}
html {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
  height: 100%;
}

body {
  padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: Arial, Helvetica, sans-serif;
  color: var(--main-text-color);
  font-size: 1.2rem;
}
h2 {
  margin: 0px auto 10px auto;
}
.headerImage {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
}

.pageContent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(100% - 40px);
	max-width: 600px;
  padding: 0px 20px 20px 20px;
  /* gap: 20px; */
}
#content {
  margin: 20px 0px;
  width: 100%;
  max-width: 450px;
}

.nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

#addPhotos,
#seatingChart,
#buffetMenu {
	display: none;
	flex-direction: column;
}


#imagesPreview img {
	max-width: 140px;
  max-height: 140px;
  object-fit: contain;
}

#imagesPreview {
  /* display: grid; */
  gap: 10px;
  
  /* grid-template-rows: auto; */

  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
/* @media (max-width: 450px) {
  #imagesPreview {
    grid-template-columns:repeat(1, 1fr);
      }
}
@media (min-width: 450px) {
  #imagesPreview {
    grid-template-columns:repeat(2, 1fr);
      }
} */


#content,
#listOfTablesAndPeople {
	display: flex;
	flex-direction: column;
}

#goUpload {
	display: none;
  margin: 20px auto 0px auto;

}



#uploadStatus {
	/* display: flex; */
  text-align: center;
}

.navButton {
	/* color: var(--button-text-color); */
	/* background-color: var(--button-bg-color); */
	/* color: var(--button-bg-color);
	background-color: transparent;
  color: #617d7b;
	border: 2px solid var(--button-bg-color); */
  color: #617d7b;
  background-color: transparent;
	border: none;
	padding: 2px 2px;
	border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  width: fit-content;
  text-decoration: underline;
}
.outlineButtonSmall {
	color: var(--button-text-color); 
	background-color: var(--button-bg-color);
  /* color: #617d7b; */
	/* background-color: transparent; */
	/* border: 2px solid #617d7b; */
	padding: 8px 18px;
	border-radius: 500px;
  border: none;
  font-size: 1.2rem;
  
  /* font-size: 0.9rem; */
  cursor: pointer;
  width: fit-content;
}

.smallButtonWithIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 6px;
}

.emailWrapper {
	/* background-color: var(--section-bg-color); */
	/* border-radius: 20px; */
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  color: #617d7b;
}

input[type="email"], input[type="text"]  {
  /* height: 1.6rem; */
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 8px;
  font-size: 1.2rem;

}

input[type="text"] {
  margin: auto;
  max-width: 300px;
  width: 100%;
}

.closeButton {
	color: var(--button-bg-color);
	background-color: #fff;
	/* color: var(--button-bg-color);
	background-color: transparent; */
	border: 2px solid var(--button-bg-color); 
	/* border: none; */
	padding: 0;
	border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 10;
}

.iconImg {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

#listOfTablesAndPeople {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tableWrapper {
  padding: 10px;
  width: calc(100% - 24px);
  max-width: 400px;
  border-radius: 10px;
  /* border: 2px solid var(--button-bg-color); */
  background-color: #d0c0de54;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.tableName {
  font-weight: bold;
}
.tablePeople {
  padding-top: 8px;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}



/* LOADING WRAPPER */
.check {
	display: none;
	font-size: 40px;
	color: var(--button-bg-color);
}

#loaderWrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: rgba(153, 153, 153, 0.301);
	flex-direction: column;
	gap: 4px;
	z-index: 50;
}

.loaderWrapper_inner {
	width: 100%;
	height: 100%;
	max-width: 200px;
	max-height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(153, 153, 153, 0.301);
	flex-direction: column;
	gap: 4px;
	background-color: #fff;
	border-radius: 20px;
	padding: 12px;
}
#loaderWrapper_label {
	font-weight: bold;
  color: var(--main-text-color);
}

.spinner {
	display: none;
}

/* LOADING */

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--main-text-color);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
