@keyframes fadeIn {
  0% {opacity:0.3;}

  100% {opacity:1;}
}
@-moz-keyframes fadeIn {
  0% {opacity:0.3;}

  100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
  0% {opacity:0.3;}

  100% {opacity:1;}
}
@-o-keyframes fadeIn {
  0% {opacity:0.3;}

  100% {opacity:1;}
}
@-ms-keyframes fadeIn {
  0% {opacity:0.3;}

  100% {opacity:1;}
}

@font-face {
    font-family: Infinite Justice Straight;
    src: url(/InfinitS.ttf) format("truetype"); 
    font-display: block;
}

@font-face {
    font-family: Montserrat Regular;
    src: url(/Montserrat-Regular.ttf) format("truetype"); 
    font-display: block;
}

@font-face {
    font-family: Montserrat Bold;
    src: url(/Montserrat-Bold.ttf) format("truetype"); 
    font-display: block;
}

* {
  box-sizing: border-box;
}

* {
  user-select: none;           /* Standard */
  -webkit-user-select: none;   /* Safari */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
}

html {
	font-smooth: antialiased !important;
	scroll-behavior: smooth;
}
body {
  	margin: 0;
  	height: 100%;
  	width: 100%;
  	font-family: "Montserrat Regular";
  	text-align: center;	
  	font-smooth: antialiased !important;
  	-webkit-overflow-scrolling: touch;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures full height */
}

.content {
  flex: 1; /* Pushes footer down */
}

.header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
	  border-bottom: 1px solid grey; 
    }

    .nav-buttons {
      display: flex;
    }

    .nav-buttons a {
		align-items: center;
		justify-content: center;
		color: white;
		text-decoration: none;
		border-radius: 8px;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
		transition: all 0.2s ease;
		-webkit-tap-highlight-color: transparent;
		outline: none;
  		background-color: transparent;
    }

	.nav-buttons a:hover {
		outline: none;
		background-color: inherit;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
	}
			
	.nav-buttons a:active{
		transform: scale(0.85);
		outline: none;
		background-color: inherit;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
	}
			
	.home {
		background: linear-gradient(#69A0D5, #2A6095);
	}

	.logout {
		background: linear-gradient(tomato, darkred);
	}

	.instructions {
		background: linear-gradient(gold, #FDB931);
	}

.masterDiv {
	overflow-x: hidden;
}

.loadingPage1 {
	animation: fadeIn 0.5s;
	-webkit-animation: fadeIn 0.5s;
	-moz-animation: fadeIn 0.5s;
	-o-animation: fadeIn 0.5s;
	-ms-animation: fadeIn 0.5s;
}

.topContainer {
	border-bottom: 1px solid grey; 
	width: 100%;  
	padding-left: 5%; 
	padding-right: 5%;
}

.fontMontserratRegular {
	font-family: "Montserrat Regular";
}

.fontMontserratBold {
	font-family: "Montserrat Bold";
	font-weight: bold;
}

.fontInfiniteS {
	font-family: Infinite Justice Straight;
}

.fontBlack {
	color: black;
}

#homeButton {
	margin-right: 5px;
}

#backButton {
	margin-right: 5px;
}

.video-wrapper {
  overflow: hidden;
	margin: 0 7%;
	border-radius: 10px;
	box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-style {
	border-radius: 10px;
}

/*------------------ Modern POPUP confirmation window ------------------------------------------------------------------*/	
#successModal,
	#processingModal {
	  opacity: 0;
	  pointer-events: none;
	  transition: opacity 0.5s ease;
	  display: flex !important; /* keep display flex, control visibility via opacity */
	  position: fixed;
	  top: 0; left: 0; right: 0; bottom: 0;
	  background: rgba(0, 0, 0, 0.5);
	  align-items: center;
	  justify-content: center;
	  z-index: 1000;
	}

	#successModal.show,
	#processingModal.show{
	  opacity: 1;
	  pointer-events: auto;
	}
		


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: white;
  padding: 20px 30px;
	margin-left: 5%;
	margin-right: 5%;
  border-radius: 10px;
  text-align: center;
  font-family: sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-buttons {
  margin-top: 20px;
}

.modal-buttons button {
  margin: 0 10px;
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#confirmYes {
  background-color: #e74c3c;
  color: white;
}

#confirmNo {
  background-color: #bdc3c7;
}

/*------------------------------------------------------------------------------------*/
.buttonSubmit {
	display: inline-block;
	background-image: linear-gradient(to bottom, #4a90e2, #357ABD);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
	border: none;
	border-radius: 10px;
	padding: 15px 0 15px 0;
	text-decoration: none;
	color: #FFFFF0;
	cursor: pointer;
	letter-spacing: 1px;
	font-family:  "Montserrat Regular";
	transition: all 0.2s ease;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	background-color: transparent;
}

.buttonSubmit:hover {
	transform: scale(1.0);
  	background: linear-gradient(to bottom, #5aa9ff, #2f6bcc);
	outline: none;
	background-color: inherit;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
}

.buttonSubmit:active,
.buttonSubmit.clicked {
	transform: scale(0.95);
	outline: none;
	background-color: inherit;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
}

.buttonSubmitSignIn {
	padding: 12px 0px 12px 0px;
	margin-top: 20px;
}


.textBox {
	display: inline-block;

	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35); 
	border-radius: 8px;
	padding: 15px 0px 15px 0px;
	letter-spacing: 1px;
	font-weight: bold;
	font-family:  "Montserrat Regular";
}

.textBox1 {
	display: inline-block;
	border: solid 2px #454444;
	border-radius: 8px;
	padding: 3%;
	text-decoration: none;
	color: black;
	letter-spacing: 1px;
	font-family:  "Montserrat Regular";
}

.legendBorderGreen {
	border: solid 3px #6dce98; 
}

.legendBorderRed {
	border: solid 3px tomato;
}

.legendBorderBlue {
	border: solid 3px CornflowerBlue;
}

.legendBorderGrey {
	border: solid 3px grey;
}

.imageMap {
	display: block; 
	margin-left: auto;
	margin-right: auto; 
	border-radius: 10px;
}

.contactText {
	text-align: left;
	color: white;
}

.styleDateInput {
	text-align: center; 
	border: none; 
	border-radius: 10px;
	background-color: #f9f9f9;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
	cursor: pointer;
}

.table1bgGrey {
	background-color: grey;
	border-radius: 7px;
	color: white;
}

.table1bgPearl {
	background-image: linear-gradient(#fff7e6, #ffe8cc);
	border-radius: 7px;
}

.table1bgGreen {
	background-image: linear-gradient(#6dce98, #297a4d);
	border-radius: 7px;
}

.table1bgOrange {	
	background-image: linear-gradient(#F99202, #F97E02);
	border-radius: 7px;
	color: white;
}

.table1bgBlue {	
	background-image: linear-gradient(#69A0D5, #2A6095);
	border-radius: 7px;
	color: white;
}

.table1bgRed {	
	background-image: linear-gradient(tomato, darkred);
	border-radius: 7px;
	color: white;
}



/*----------------- index.php AND home.php  ---------------------*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

.buttonSignIn {
	display: inline-block;
	background-image: linear-gradient(#9a9a9a, #333f50);
	border: none;
	border-radius: 10px;
	padding: 12px 0px 12px 0px;
	text-decoration: none;
	color: #FFFFF0;
	margin-top: 20px;
	cursor: pointer;
	letter-spacing: 1px;
	font-family:  "Montserrat Regular";
}

.fontRed {
	color: red; 
}

.fontWhite {
	color: white;
}

/*----------------- reservation.php  ---------------------*/
.marginFlexItemSpots {
	flex: 100%;
}

.buttonSpotLabel {
	display: inline-block;
	position: relative; 
	align-items: center; 
	height: inherit;
	background-image: linear-gradient(#6dce98, #297a4d);
	border-radius: 10px;
	padding: 13px 0px 13px 0px;
	text-decoration: none;
	color: #FFFFF0;
	width: 80%;
	cursor: pointer;
	letter-spacing: 1px;
	font-family:  "Montserrat Regular";
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
	-webkit-tap-highlight-color: transparent;
	outline: none;
	background-color: transparent;
	
}

.buttonSpotInput {
	position: absolute; 
	top:0; left: 0; 
	appearance: none;
	opacity: 0;
	  pointer-events: none; /* optional: prevents any interaction */
	  height: 0;
	  width: 0;
}

.tableAdminsMargin {
	margin-left: auto;
	margin-right: auto;
}

.password-section {
	position: relative;
	display: inline;
}

.password-toggle-icon {
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	cursor: pointer;
}

.password-toggle-icon i {
	line-height: 1;
	color: #333;
	transition: color 0.3s ease-in-out;
	margin-bottom:;
}

.password-toggle-icon i:hover {
	color: #000;
}

.letterSpacing1px {
	letter-spacing: 1px;
}

.textJustify {
	text-align: justify;
	text-align-last: justify;
}

.status-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 7px;
	margin-bottom: 15px;
}

.status-item {
  display: flex;
  align-items: center;
  font-family: "Montserrat Regular";
  font-size: 16px;
}

.status-item:not(:last-child) {
	  margin-right: 20px;
	}

.status-box {
  height: 12px;
  width: 12px;
  border-radius: 3px; /* slight rounding */
  display: inline-block;
  margin-right: 8px;
}

.red {
  background-color: #ff3333;
}

.blue {
  background-color: #2A6095;
}

.green {
  background-color: #248f48;
}

.timeDisplay {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/*----------------- IMAGES ZOOM  ---------------------*/
.image-container {
  position: relative;
  display: inline-block;
  cursor: zoom-in;
}

.zoom-hint {
  position: absolute;
	  bottom: 10px;
	  left: 50%;
	  transform: translateX(-50%);
	  background: rgba(0, 0, 0, 0.6);
	  color: white;
	  padding: 6px 12px;
	  border-radius: 8px;
	  font-size: 14px;
	  animation: fadeOut 4s forwards;
	  pointer-events: none;
	  z-index: 10;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#zoomImage {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.1s ease-out;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

#zoomImage.grabbing {
  cursor: grabbing;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
}


	@keyframes fadeOut {
	  0% { opacity: 1; }
	  80% { opacity: 1; }
	  100% { opacity: 0; display: none; }
	}



/*-------------------------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 3840px) and (min-width: 1281px) {
	.header {
      padding: 0.55% 5%;
    }

    .nav-buttons {
		height: 5%;
    }
	
	.nav-buttons a:not(:last-child) {
	  margin-right: 35px;
	}

    .nav-buttons a {
		font-size: 1.3vw;
		padding: 0;
		height: 100%; 
    }
	
	.nav-buttons i {
		font-size: 2vw;
		padding: 12px 12px;
    }
	

	
	.fontSizeLogo {
		font-size: 2.9vw;
	}
	
	.fontSizeMenuHeader {
		font-size: 1.5vw;
	}
	
	.fontSizeTitle {
		font-size: 2.2vw;
	}
	
	.marginPageTitle {
		margin-top: 2%;
		margin-bottom: 2%;
	}
	
	.sectionPadding {
		padding-top: 3%; 
		padding-bottom: 3%; 
		padding-left: 7%;
		padding-right: 7%;
	}
	
	.contactSectionPadding {
		padding-top: 1%; 
		padding-bottom: 2%; 
		padding-left: 7%;
		padding-right: 7%;
	}
	
	.contactMargin1 {
		margin-bottom: 2%;
	}
	
	.fontSizeButtons {
		font-size: 1.5vw;
	}
	
	.sectionTitle {
		position: relative;
		padding-bottom: 2%;
		text-align: left;
	}
	
	.fontSizeSectionTitle {
		font-size: 2.4vw;
	}
	
	.contactMargin2 {
		margin-bottom: 0.3%;
	}

	.contactMargin3 {
		margin-bottom: 2%;
	}
	
	.fontSizeContact {
		font-size: 1.7vw;
	}
	
	.instagramSize {
		height: 2.2vw;
		margin-top: 0.2%;
		margin-right: 0.8%;
	}
	
	.arrowUpStyle {
		height: 3vw;
	}
	
	.foot {
		position: relative;
		width:100%;
		border-top: 1px solid grey;
		padding-top: 1%;
		padding-bottom: 1%;
	}
	
	.fontSizeMenuFooter {
		font-size: 1.2vw;
	}
	
/*----------------- index.php AND home.php  ---------------------*/
	.fontSizeLoginTitle {
		font-size: 2.2vw;
	}
	
	.buttonWidth {
		width: 25%;
	}
	
	.marginLoginInput {
		margin-top: 2%;
		margin-bottom: 2%;
	}
	
	.marginLoginButton {
		margin-top: 1%;
		margin-bottom: 0.75%;
	}
	
	.marginResetPasscode {
		margin-bottom: 5%;
	}
	
	.fontIncorrectCredentials {
		font-size: 1.4vw;
		margin-bottom: 0.75%;
	}
	
	input[type=number], input[type=email], input[type=password], input[type=text] {
  		border: solid 2px #9a9a9a;
	  	border-radius: 8px;
		padding: 10px 10px 10px 10px;
		font-size: 1.5vw;
		font-family: "Montserrat Regular";
		text-align: center;
	}

	input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, input[type=text]:focus {
		border: 2px solid black;
	}
	
	.marginBottomAdminPage {
		margin-bottom: 5%;
	}
	
	.marginBottomTenantPage {
		margin-bottom: 15%;
	}
	
	.marginBottomReservationPage {
		margin-bottom: 7%;
	}
	
	.password-toggle-icon i {
		font-size: 1.3vw;
	}

/*----------------- reservation.php and reservationEV.php---------------------*/	
	.marginSubmitButton {
		margin-top: 1%;
		margin-bottom: 1%;
	}

	.submitButtonWidth {
		width: 22%;
	}
	
	.marginSpotButtons {
		margin-top: 2%;
		margin-bottom: 2%;
		padding-left: 25%;
		padding-right: 25%;
		width: 100%;
	}
	
	.marginBottomAdminPageBeforeContactUs {
		margin-bottom: 17%;
	}
	
	.divLine {
		height: 2px;
		background: linear-gradient(to right, #ccc, #666, #ccc);
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
		margin-top: 3%;
		margin-bottom: 3%;
	}
	
	.legendBox {
		margin-top: 2%; 
		padding: 15px 0 15px 0; 
		width: 30%; 
		margin-left: auto;
		margin-right: auto;
	}
	
	.imageMap {
		width: 50%; 
		margin-top: 3%;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
	}	
	
	.instructionsDiv {
		box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
		border-radius: 10px; 
		margin-left: 7%; 
		margin-right: 7%; 
		padding-left: 5%;
		padding-right: 5%;
		text-align: left; 
		font-size: 1.8vw;
	}
	
	.informationDiv {
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35); 
		background-image: linear-gradient(#F99202, #F97E02); 
		color: white;
		border-radius: 10px; 
		margin-left: auto; 
		margin-right: auto;
		padding: 15px 0 15px 0;
		text-align: center; 
		font-size: 1.8vw;
	}
	
	.timeDisplay {
		font-size: 1.8vw;
		margin-top: 1%;
		margin-bottom: 1%;
	}
/*----------------- emailPasscode.php ---------------------*/
	.messageStyle {
		margin-top: 5%;
		margin-bottom: 20%;
		margin-left: 15%;
		margin-right: 15%;
		text-align: center;
		text-justify: inter-word;
	}
	
/*----------------- changePasscode.php AND allowedSpots.php ---------------------*/
	.marginText {
		margin-top: 5%;
		margin-bottom: 7%;
	}
	
/*----------------- changeEmail.php ---------------------*/
	.modifyEmailDiv { 
		box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
		border-radius: 10px; 
		margin-left: 7%; 
		margin-right: 7%; 
		padding: 5%;
	}
	
/*----------------- spotStatus.php  ---------------------*/
	.table,th,td  {
		border:1px solid black;
		align-content: center;
		padding: 10px 50px 10px 50px;
		
	}

	.divMarginSpace {
		margin-top: 4%;
	}
	
	.divMarginSpace2 {
		margin-top: 3%;
	}
	
/*----------------- getOccupiedTimeSlotsEV.php  ---------------------*/	
	.table1 {
		border: none;
		align-content: center;
		padding: 10px 50px 10px 50px;
		margin-top: 2%;
	}
	
	.table2 {
		border: none;
		align-content: center;
		padding: 10px 50px 10px 50px;
		margin-top: 5%;
	}
	
/*----------------- reservationEV.php  ---------------------*/	
	.marginLeftRight {
		margin-top: 2%;
		margin-bottom: 2%;
		padding-left: 25%;
		padding-right: 25%;
		width: 100%;
	}
	
	.divTableEV {
		max-height: 0; 
		transition: max-height 0.3s ease-out; 
		overflow: hidden; 
	}
	
	.tableEV {
		font-size: 4vw; 
		display: block; 
		overflow-x: auto; 
		white-space: nowrap;
		margin-top: 3%;
		border-spacing: 4px;
	}
	
	.tableEVtd {
		display: inline-block;
		border: none;
		border-radius: 8px; 
		align-content: center;
		padding: 20px 10px 20px 10px;
		margin-top: 0;
		margin-right: 1px;
	}
	
/*----------------- IN Settings options  ---------------------*/	
	.textBoxWidth {
		width: 10%;
	}

	.textBoxWidthEmail {
		width: 40%;
	}
}

			
@media only screen and (max-width: 1280px) and (min-width: 621px) {	
	.header {
      padding: 1% 5%;
    }

    .nav-buttons {
		height: 8%;
    }
	
	.nav-buttons a:not(:last-child) {
	  margin-right: 20px;
	}

    .nav-buttons a {
		font-size: 2.2vw;
		padding: 0;
		height: 100%; 
    }
	
	.nav-buttons i {
		font-size: 3vw;
		padding: 9px 9px;
    }
	
	.fontSizeLogo {
		font-size: 6vw;
	}

	.fontSizeMenuHeader {
		font-size: 2.5vw;
	}
	
	.fontSizeTitle {
		font-size: 4vw;
	}
	
	.marginPageTitle {
		margin-top: 4%;
		margin-bottom: 4%;
	}
	
	.fontSizeButtons {
		font-size: 3.3vw;
	}
	
	.sectionPadding {
		padding-top: 4%; 
		padding-bottom: 4%; 
		padding-left: 7%;
		padding-right: 7%;
	}
	
	.contactSectionPadding {
		padding-top: 2%; 
		padding-bottom: 3%; 
		padding-left: 7%;
		padding-right: 7%;
	}
	
	.contactMargin1 {
		margin-bottom: 2.5%;
	}
	
	.sectionTitle {
		position: relative;
		padding-bottom: 2%;
		text-align: left;
	}
	
	.fontSizeSectionTitle {
		font-size: 3vw;
	}
	
	.contactMargin2 {
		margin-bottom: 0.5%;
	}

	.contactMargin3 {
		margin-bottom: 2%;
	}
	
	.fontSizeContact {
		font-size: 3vw;
	}
	
	.instagramSize {
		height: 2.9vw;
		margin-top: 0.2%;
		margin-right: 1%;
	}
	
	.arrowUpStyle {
		height: 4vw;
	}
	
	.foot {
		position: relative;
		width:100%;
		border-top: 1px solid grey;
		padding-top: 1%;
		padding-bottom: 1%;
	}
	
	.fontSizeMenuFooter {
		font-size: 2vw;
	}
	
/*----------------- index.php AND home.php  ---------------------*/
	.fontSizeLoginTitle {
		font-size: 4vw;
	}
	
	.buttonWidth {
		width: 50%;
	}
	
	.marginLoginInput {
		margin-top: 4%;
		margin-bottom: 4%;
	}
	
	.marginLoginButton {
		margin-top: 3%;
		margin-bottom: 1.5%;
	}
	
	.marginResetPasscode {
		margin-bottom: 8%;
	}
	
	.fontIncorrectCredentials {
		font-size: 3vw;
	}
	
	input[type=number], input[type=email], input[type=password], input[type=text] {
		border: solid 2px #9a9a9a;
		border-radius: 8px;
		padding: 1.5%;
		font-size: 3.3vw;
		font-family:  "Montserrat Regular";
		text-align: center;
	}

	input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, input[type=text]:focus {
		border: 2px solid black;
	}
	
	.marginBottomAdminPage {
		margin-bottom: 8%;
	}
	
	.marginBottomTenantPage {
		margin-bottom: 25%;
	}
	
	.marginBottomReservationPage {
		margin-bottom: 17%;
	}
	
	.password-toggle-icon i {
		font-size: 3.3vw;
	}

/*----------------- reservation.php ---------------------*/	
	.marginSubmitButton {
		margin-top: 3%;
		margin-bottom: 2%;
	}

	.submitButtonWidth {
		width: 45%;
	}
	
	.marginSpotButtons {
		margin-top: 5%;
		margin-bottom: 3%;
		padding-left: 20%;
		padding-right: 20%;
		width: 100%;
	}
	
	.marginBottomAdminPageBeforeContactUs {
		margin-bottom: 17%;
	}
	
	.divLine {
		height: 2px;
		background: linear-gradient(to right, #ccc, #666, #ccc);
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
		margin-top: 8%;
		margin-bottom: 6%;
	}
	
	.legendBox {
		margin-top: 5%; 
		padding: 15px 0 15px 0; 
		width: 40%; 
		margin-left: auto;
		margin-right: auto;
	}
	
	.imageMap {
		width: 70%; 
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
	}	
	
	.instructionsDiv {
		box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
		border-radius: 10px; 
		margin-left: 7%; 
		margin-right: 7%; 
		padding-left: 5%;
		padding-right: 5%;
		text-align: left; 
		font-size: 3vw;
	}
	
	.informationDiv {
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35); 
		background-image: linear-gradient(#F99202, #F97E02); 
		color: white;
		border-radius: 10px; 
		margin-left: auto; 
		margin-right: auto;
		padding: 15px 0 15px 0;
		text-align: center; 
		font-size: 3vw;
	}
	
	.timeDisplay {
		font-size: 3vw;
		margin-top: 1%;
		margin-bottom: 1%;
	}
/*----------------- emailPasscode.php ---------------------*/
	.messageStyle {
		margin-top: 5%;
		margin-bottom: 40%;
		margin-left: 15%;
		margin-right: 15%;
		text-align: center;
		text-justify: inter-word;
	}
	
/*----------------- changePasscode.php AND allowedSpots.php ---------------------*/
	.marginText {
		margin-top: 10%;
		margin-bottom: 12%;
	}
	
/*----------------- changeEmail.php ---------------------*/
	.modifyEmailDiv {
		box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35); 
		border-radius: 10px; 
		margin-left: 7%; 
		margin-right: 7%; 
		padding: 5%;
	}
	
/*----------------- spotStatus.php  ---------------------*/
	.table,th,td  {
		border:1px solid black;
		align-content: center;
		padding: 10px 30px 10px 30px;
	}

	.divMarginSpace {
		margin-top: 10%;
	}
	
	.divMarginSpace2 {
		margin-top: 7%;
	}
	
/*----------------- getOccupiedTimeSlotsEV.php  ---------------------*/	
	.table1 {
		border: none;
		align-content: center;
		padding: 10px 30px 10px 30px;
		margin-top: 5%;
	}	
	
	.table2 {
		border: none;
		align-content: center;
		padding: 10px;
		margin-top: 5%;
	}
	
/*----------------- reservationEV.php  ---------------------*/	
	.marginLeftRight {
		margin-top: 5%;
		margin-bottom: 3%;
		padding-left: 25%;
		padding-right: 25%;
		width: 100%;
	}
	
	.divTableEV {
		max-height: 0; 
		transition: max-height 0.3s ease-out; 
		overflow: hidden; 
	}
	
	.tableEV {
		font-size: 4vw; 
		display: block; 
		overflow-x: auto; 
		white-space: nowrap;
		margin-top: 3%;
		border-spacing: 4px;
	}
	
	.tableEVtd {
		display: inline-block;
		border: none;
		border-radius: 8px; 
		align-content: center;
		padding: 20px 10px 20px 10px;
		margin-top: 0;
		margin-right: 1px;
	}

	/*----------------- IN Settings options  ---------------------*/	
	.textBoxWidth {
		width: 30%;
	}
	
	.textBoxWidthEmail {
		width: 50%;
	}

}

@media only screen and (max-width: 620px) {

	.header {
      padding: 3% 5%;
    }

    .nav-buttons {
		height: 5%;
    }
	
	.nav-buttons a:not(:last-child) {
	  margin-right: 15px;
	}

    .nav-buttons a {
		font-size: 3.5vw;
		padding: 0;
		height: 100%; 
    }
	
	.nav-buttons i {
		font-size: 4.5vw;
		padding: 9px 9px;
    }
	
	.nav-buttons span {
		padding: 19px 9px;
    }
	
	.fontSizeLogo {
		font-size: 8.2vw;
	}

	.fontSizeMenuHeader {
		font-size: 4vw;
	}
	
	.fontSizeTitle {
		font-size: 5.5vw;
	}
	
	.marginPageTitle {
		margin-top: 7%;
		margin-bottom: 7%;
	}
	
	.fontSizeButtons {
		font-size: 4.5vw;
	}
	
	.sectionPadding {
		padding-top: 6%; 
		padding-bottom: 6%; 
		padding-left: 7%;
		padding-right: 7%;
	}
	
	.contactSectionPadding {
		padding-top: 4%; 
		padding-bottom: 5%; 
		padding-left: 7%;
		padding-right: 7%;
	}
	
	.contactMargin1 {
		margin-bottom: 3%;
	}
	
	.sectionTitle {
		position: relative;
		padding-bottom: 3%;
		text-align: left;
	}
	
	.fontSizeSectionTitle {
		font-size: 5vw;
	}
	
	.contactMargin2 {
		margin-bottom: 1%;
	}

	.contactMargin3 {
		margin-bottom: 3%;
	}
	
	.fontSizeContact {
		font-size: 4vw;
	}
	
	.instagramSize {
		height: 6vw;
		margin-top: 0.6%;
		margin-right: 1.5%
	}
	
	.arrowUpStyle {
		height: 7vw;
	}
	
	.foot {
		position: relative;
		width:100%;
		border-top: 1px solid grey;
		padding-top: 1.5%;
		padding-bottom: 1.5%;
	}
	
	.fontSizeMenuFooter {
		font-size: 3vw;
	}

/*----------------- index.php AND home.php  ---------------------*/
	.fontSizeLoginTitle {
			font-size: 5vw;
	}
	
	.buttonWidth {
		width: 80%;
	}
	
	.marginLoginInput {
		margin-top: 5%;
		margin-bottom: 5%;
	}
	
	.marginLoginButton {
		margin-top: 3%;
		margin-bottom: 3%;
	}
	
	.marginResetPasscode {
		margin-bottom: 8%;
	}

	.fontIncorrectCredentials {
		font-size: 4vw;
		padding-left: 7%;
		padding-right: 7%;
		margin-top: 3%;
	}

	input[type=number], input[type=email], input[type=password], input[type=text] {
  		border: solid 2px #8d8d8d;
  		border-radius: 8px;
		padding: 3%;
		font-size: 4.5vw;
		font-family: "Montserrat Regular";
		text-align: center;
	}

	input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, input[type=text]:focus {
	  border: 2px solid black;
	}
	
	.marginBottomAdminPage {
		margin-bottom: 10%;
	}
	
	.marginBottomTenantPage {
		margin-bottom: 40%;
	}
	
	.marginBottomReservationPage {
		margin-bottom: 20%;
	}

	.password-toggle-icon i {
		font-size: 4.5vw;
	}
	
/*----------------- reservation.php ---------------------*/	
	.marginSubmitButton {
		margin-top: 5%;
		margin-bottom: 1%;
	}
	
	.submitButtonWidth {
		width: 65%;
	}

	.marginSpotButtons {
		margin-top: 10%;
		margin-bottom: 4%;
		padding-left: 5%;
		padding-right: 5%;
		width: 100%;
	}
	
	.marginBottomAdminPageBeforeContactUs {
		margin-bottom: 17%;
	}
	
	.divLine {
		height: 2px;
		background: linear-gradient(to right, #ccc, #666, #ccc);
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
		margin-top: 8%;
		margin-bottom: 6%;
	}
	
	.legendBox {
		margin-top: 5%; 
		padding: 10px 0 10px 0; 
		width: 60%; 
		margin-left: auto;
		margin-right: auto;
	}
	
	.imageMap {
		width: 85%; 
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35);
	}
	
	.instructionsDiv {
		box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
		border-radius: 10px; 
		margin-left: 7%; 
		margin-right: 7%; 
		padding-left: 5%;
		padding-right: 5%;
		padding-top: 3%;
		padding-bottom: 3%;
		text-align: left; 
		font-size: 4vw;
	}
	
	.informationDiv {
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.35); 
		background-image: linear-gradient(#F99202, #F97E02); 
		color: white;
		border-radius: 10px; 
		margin-left: auto; 
		margin-right: auto;
		padding: 15px 0 15px 0;
		text-align: center; 
		font-size: 4vw;
	}
	
	.timeDisplay {
		font-size: 4.5vw;
		margin-top: 1%;
		margin-bottom: 1%;
	}
	
/*----------------- emailPasscode.php ---------------------*/
	.messageStyle {
		margin-top: 7%;
		margin-bottom: 70%;
		margin-left: 10%;
		margin-right: 10%;
		text-align: center;
		text-justify: inter-word;
	}
	
/*----------------- changePasscode.php AND allowedSpots.php ---------------------*/
	.marginText {
		margin-top: 10%;
		margin-bottom: 7%;
		padding-left: 10%;
		padding-right: 10%;
	}
	
	.marginTextEmail {
		margin-top: 10%;
		margin-bottom: 7%;
		padding-left: 10%;
		padding-right: 10%;
	}

/*----------------- changeEmail.php ---------------------*/
	.modifyEmailDiv {
		box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.35);
		border-radius: 10px; 
		margin-left: 7%; 
		margin-right: 7%; 
		padding: 5%;
	}
	
/*----------------- spotStatus.php  ---------------------*/
	.table,th,td  {
		border:1px solid black;
		align-content: center;
		padding: 10px 20px 10px 20px;
		margin-top: 8%;
	}

	.divMarginSpace {
		margin-top: 8%;
	}
	
	.divMarginSpace2 {
		margin-top: 5%;
	}
/*----------------- getOccupiedTimeSlotsEV.php  ---------------------*/	
	.table1 {
		border: none;
		align-content: center;
		padding: 13px 12px;
		margin-top: 8%;
	}
	
	.table1th {
		padding: 10px 22px 10px 22px;
	}
	
	.table2 {
		border: none;
		align-content: center;
		padding: 10px;
		margin-top: 5%;
	}
	
/*----------------- reservationEV.php  ---------------------*/	
	.marginLeftRight {
		margin-top: 5%;
		margin-bottom: 2%;
		padding-left: 8%;
		padding-right: 8%;
		width: 100%;
	}
	
	.divTableEV {
		max-height: 0; 
		transition: all 0.3s ease-out; 
		overflow: hidden; 
	}
	
	.tableEV {
		font-size: 4vw; 
		display: block; 
		overflow-x: auto; 
		white-space: nowrap;
		margin-top: 3%;
	}
	
	.tableEVtd {
		display: inline-block;
		border: none;
		border-radius: 8px; 
		align-content: center;
		padding: 20px 10px 20px 10px;
		margin-top: 0;
		margin-right: 1px;
	}

/*----------------- IN Settings options  ---------------------*/	
	.textBoxWidth {
		width: 100%;
	}
	
	.textBoxWidthEmail {
		width: 100%;
	}
	

}



