* {   
    -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;	  
}

html, body 
{
	margin: 0;
	background: rgb(9, 9, 4);
	background-image: url('../textures/lb.jpg');
    background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	font-family: Arial, sans-serif;
	width: 100vw;
    height: 100vh;
	display: flex;
	z-index: 0;
	overflow: hidden;
}

#button-container {
    text-align: center;
}

#load-button {
    width: 150px;
    height: 150px;
    cursor: pointer;
    transition: transform 0.3s ease;
    touch-action: manipulation;
    user-select: none;
}

#load-button:hover {
    transform: scale(0.95);
}

#vitours_content 
{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#vitours_ui
{
	position: absolute;
	width: 95vw;
    height: 95vh;
    justify-content: center;
    align-items: center;	
	z-index:990;
	display: none;	
}

#vitours_uir
{
  position: fixed;
  right: 10px;
  top: 10px;
  bottom: 10px;
  max-width: 350px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;

}

#camera-buttons 
{
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-items: center;
  flex-grow: 1;
  overflow-y: auto;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 200px;
  scrollbar-width: thin;
  scrollbar-color: #888 #444;
}

.camera-buttons ::-webkit-scrollbar {
  width: 8px;
}

.camera-buttons::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.camera-buttons::-webkit-scrollbar-track {
  background-color: #444;
}

.camera-button 
{
  margin: 5px 0;
  padding: 2px;
  background-color: #555;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 30px;
  text-align: center;
  align-self: flex-end;
}

.camera-button:hover {
    background-color: #666;
	transform: scale(0.95);
}

#loading-container 
{
    position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    display: none;
}

#loading-text {
    font-size: 24px;
    letter-spacing: 0px;
    margin-bottom: 20px;
}

#loading-text span {
    display: inline-block;
    opacity: 0;
    color: white;
    animation: fadeIn 1s ease forwards;
}

#loading-text span:nth-child(1) { animation-delay: 0s; }
#loading-text span:nth-child(2) { animation-delay: 0.1s; }
#loading-text span:nth-child(3) { animation-delay: 0.2s; }
#loading-text span:nth-child(4) { animation-delay: 0.3s; }
#loading-text span:nth-child(5) { animation-delay: 0.4s; }
#loading-text span:nth-child(6) { animation-delay: 0.5s; }
#loading-text span:nth-child(7) { animation-delay: 0.6s; }
#loading-text span:nth-child(8) { animation-delay: 0.7s; }
#loading-text span:nth-child(9) { animation-delay: 0.8s; }

@keyframes fadeIn {
    0% { opacity: 0; color: transparent; }
    100% { opacity: 1; color: white; }
}

#progress-bar {
    width: 350px;
    height: 5px;
    background-color: #333;
    border-radius: 8px;
    position: relative;
}

#progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, white, yellow);
    transition: width 0.2s ease;
}

#progress-percent {
    margin-top: 10px;
    font-size: 18px;
}

#minimap-container 
{
	position: fixed;
	max-width: 200px;
	min-width: 150px;
	right: 10px;
	bottom: 0;
	height: auto;
}

#minimap-image {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

#minimap-marker 
{
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);    
}

#fullscreen-button 
{
	position: fixed;
    top: 20px;
    right:13px;
    width: 25px;
    min-height: 25px;
    background: url('../textures/fs.png') no-repeat center;
    background-size: contain;
    touch-action: manipulation;
    z-index: 200;
    opacity: 0.7;
    transition: opacity 0.3s ease;
	align-self: flex-end;
	z-index:999;
}

#fullscreen-button:hover 
{
    opacity: 1;
	cursor:pointer;
}

#fullscreen-button.fullscreen-exit 
{
    background: url('../textures/fs.png') no-repeat center;
    background-size: contain;
}

#fullscreen-button:active 
{
    opacity: 0.9;
}

#output {
    display: flex;
    justify-content: center; /* Горизонтальное выравнивание */
    align-items: center; /* Вертикальное выравнивание */
    height: 100vh; /* Занимает всю высоту экрана */
    text-align: center; /* Выравнивание текста */
}