body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

#panorama-container {
  width: 100%;
  height: 100%;
}

#panorama {
  width: 100%;
  height: 100%;
}

#controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.ctrl {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.2s ease;
  user-select: none;
}

.ctrl:hover {
  background: #eee;
  transform: scale(1.1);
}

.ctrl:active {
  transform: scale(0.9);
}

/* TOP MENU STYLE */
#top-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: flex;
  gap: 10px;
}

.menu-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif, Arial;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* SIDE NAVIGATION BUTTONS */
.scene-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scene-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  width: 70px;
  height: 70px;
}

.left-nav { left: 20px; }
.right-nav { right: 20px; }

.chevron {
  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 8px;
}

.chevron.left { transform: rotate(135deg); margin-left: 6px; }
.chevron.right { transform: rotate(-45deg); margin-right: 6px; }

/**** MOVED TO css/style-hotspot.css ****/

/* Arrow Icons */
.arrow {
  border: solid #333;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.up { transform: rotate(-135deg); }
.down { transform: rotate(45deg); }
.left { transform: rotate(135deg); }
.right { transform: rotate(-45deg); }

.pnlm-about-msg {
  line-height: 1.4 !important;
  font-family: 'Inter', sans-serif, Arial !important;
  font-size: 13px !important;
  color: #fff !important;
  padding: 8px 12px !important;
}

.pnlm-about-msg a {
  color: #fff !important;
}
