body { 
	margin: 0;
	padding: 0;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	width: 100vw;
	overflow: hidden;
	color: white;
	font-family: 'Roboto', sans-serif; /* Use Roboto font with fallback to sans-serif */
}
#unity-container {     
  position: fixed;
  object-fit: cover;
  width: 100vw;
	height: 100vh;  
}
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { 
  width: 100vw;
	height: 100vh;
  position: fixed;
  object-fit: cover;  
}
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; bottom: 20%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('app-logo.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full.png') no-repeat center }
#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }


.ctaDiv {
	display: flex;
	flex-direction: column;
  position: fixed;
	align-items: center;
  bottom: 5%;
  left: 0;
  width: 100%;
	justify-content: center;
  padding: 20px; /* Adjusted padding value */
  box-sizing: border-box;
  text-align: center;
  background-color: rgba(0, 255, 204, 0.9); /* Semi-transparent white background */
	z-index: 99;
}

.cameraPerm {
  display: none;
	flex-direction: column;
  position: fixed;
	align-items: center;
  width: 100%;
  height: 100%;
	justify-content: center;      
  background: rgba(0, 0, 0, 0.802);
	z-index: 98;
}

.select-dropdown {
  position: relative;
  background-color: #0aaa0c;
  border-radius: 4px;	
}

.select-dropdown select {
  font-size: 1rem;
  font-weight: normal;
  max-width: 100%;
  padding: 8px 24px 8px 10px;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select-dropdown select:active,
.select-dropdown select:focus {
  outline: none;
  box-shadow: none;
}

.select-dropdown:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 5px solid #aaa;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

/* Adjust dropdown menu positioning */
.select-dropdown select:focus + .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px); /* Adjust this value as needed */
  left: 0;
  width: 100%;
  background-color: #fff; /* Background color for dropdown menu */
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Box shadow for dropdown menu */
}

.dropdown-menu li {
  list-style: none;
}

/* Example styles for dropdown items */
.dropdown-menu li a {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  color: #333; /* Text color for dropdown items */
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0; /* Background color on hover */
}

.btn {
	line-height: 20px;
	height: 50px;
	text-align: center;
	width: 200px;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
}

#startARButton {
	background-color: aqua;
}

#bg-img {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -1; /* Place the background image behind other content */
}
