* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: visible;
  overflow-y: hidden;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  background-color: #000;
  color: #fff;
}

#pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: visible;
  overflow-y: hidden;
}

#titleBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  height: 40px;
  text-align: center;
}

.mobile #titleBar {
  height: 50px;
  right: 50px;
}

body.fullscreen-enabled #titleBar {
  right: 80px;
}

body.fullscreen-enabled.mobile #titleBar {
  right: 100px;
}

#titleBar .sceneName {
  width: 100%;
  height: 100%;
  line-height: 30px;
  padding: 5px;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.mobile #titleBar .sceneName {
  line-height: 40px;
}

.mobile #fullscreenToggle {
  width: 50px;
  height: 50px;
}

body.fullscreen-enabled #fullscreenToggle {
  display: block;
}

#fullscreenToggle .icon {
  width: 24px;
  height: 24px;
}

#fullscreenToggle .icon.on {
  display: none;
}

#fullscreenToggle .icon.off {
  display: block;
}

#fullscreenToggle.enabled .icon.on {
  display: block;
}

#fullscreenToggle.enabled .icon.off {
  display: none;
}

.mobile #autorotateToggle {
  width: 50px;
  height: 50px;
}

#autorotateToggle .icon {
  width: 24px;
  height: 24px;
}

#autorotateToggle .icon.on {
  display: none;
}

#autorotateToggle .icon.off {
  display: block;
}

#autorotateToggle.enabled .icon.on {
  display: block;
}

#autorotateToggle.enabled .icon.off {
  display: none;
}

#mobileAutorotateToggle .icon {
  width: 24px;
  height: 24px;
}

#mobileAutorotateToggle .icon.on {
  display: none;
}

#mobileAutorotateToggle .icon.off {
  display: block;
}

#mobileAutorotateToggle.enabled .icon.on {
  display: block;
}

#mobileAutorotateToggle.enabled .icon.off {
  display: none;
}

#sceneList {
  position: absolute;
  width: 320px;
  height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.95) translateX(-10px);
  -webkit-transform: scale(0.95) translateX(-10px);
}

#sceneList .scenes {
  width: 100%;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.8);
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#sceneList.enabled .scenes {
  background-color: rgba(58,68,84,0.95);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3), 0 0 20px rgba(103,115,131,0.3);
  border: 1px solid rgba(103,115,131,0.4);
}

.mobile #sceneList {
  width: 100%;
  height: 300px;
  left: 0;
  transform: translateY(20px) scale(0.98);
  -webkit-transform: translateY(20px) scale(0.98);
}

.mobile #sceneList.enabled {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile #sceneList .scenes {
  height: 100%;
}

#sceneList.enabled {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateX(0);
  -webkit-transform: scale(1) translateX(0);
  z-index: 1000;
}


.mobile #sceneList .scene {
  height: 40px;
}

#sceneList .scene .text {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}

.mobile #sceneList .scene .text {
  line-height: 40px;
  font-size: 14px;
}

.no-touch #sceneList .scene:hover {
  background-color: rgba(13, 13, 13, 1);
}

.no-touch #sceneList.enabled .scene:hover {
  background-color: rgba(103,115,131,0.6);
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(103,115,131,0.3);
}

#sceneList .scene:active {
  background-color: rgba(103,115,131,0.6);
}

#sceneList .scene.current {
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
  border-left: 3px solid #fff;
}

#sceneList.enabled .scene.current {
  background-color: rgba(103,115,131,0.9);
  box-shadow: 0 0 15px rgba(103,115,131,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  border-left: 4px solid #fff;
  transform: translateX(3px);
  -webkit-transform: translateX(3px);
}

#sceneList.enabled .scene.current .text {
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  font-weight: 600;
}


.link-hotspot, .highlight-hotspot {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  opacity: 0.9;
}

.no-touch .link-hotspot:hover, .no-touch .highlight-hotspot:hover {
  opacity: 1;
}

.mobile .link-hotspot, .mobile .highlight-hotspot {
  width: 70px;
  height: 70px;
}

.link-hotspot-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.highlight-hotspot-icon {
  width: 75%;
  height: 75%;
  cursor: pointer;
}

.link-hotspot-tooltip, .highlight-hotspot-tooltip {
  position: absolute;
  left: 100%;
  top: 14px;

  margin-left: 3px;

  font-size: 16px;

  max-width: 300px;

  padding: 12px 15px;

  border-radius: 8px;

  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.9);

  color: #fff;

  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;

  cursor: pointer;

  opacity: 0;

  -ms-transform: translateX(-8px);
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);

  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);

}

.mobile .link-hotspot-tooltip, .mobile .highlight-hotspot-tooltip {
  top: 19px; /* ( 70 - (16 + 2*8) ) / 2 */
}

.no-touch .link-hotspot:hover .link-hotspot-tooltip, .no-touch .highlight-hotspot:hover .highlight-hotspot-tooltip {
  opacity: 1;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-color: rgba(58,68,84,0.95);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.link-hotspot-tooltip, .highlight-hotspot-tooltip {
  pointer-events: none;
}
.no-touch .link-hotspot:hover .link-hotspot-tooltip, .no-touch .highlight-hotspot:hover .highlight-hotspot-tooltip {
  pointer-events: all;
}

.tooltip-fallback .link-hotspot-tooltip, .tooltip-fallback .highlight-hotspot-tooltip {
  display: none;
}
.no-touch .tooltip-fallback .link-hotspot:hover .link-hotspot-tooltip, .no-touch .tooltip-fallback .highlight-hotspot:hover .highlight-hotspot-tooltip {
  display: block;
}


.info-hotspot, .highlight-hotspot {
  line-height: 1.2em;
  opacity: 0.9;
}

.no-touch .info-hotspot:hover {
  opacity: 1;
}

.info-hotspot.visible {
  opacity: 1;
}

.info-hotspot .info-hotspot-header {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: rgb(103,115,131);
  cursor: pointer;
}

.mobile .info-hotspot .info-hotspot-header {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.desktop .info-hotspot.visible .info-hotspot-header {
  background-color: rgb(78,88,104);
}

.info-hotspot .info-hotspot-icon-wrapper {
  width: 40px;
  height: 40px;
}

.mobile .info-hotspot .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.mobile .info-hotspot .hotspot-direct-button {
  min-width: 100px;
  padding: 14px 24px;
  font-size: 14px;
}

.info-hotspot .info-hotspot-icon {
  width: 90%;
  height: 90%;
  margin: 5%;
}

.info-hotspot .info-hotspot-title-wrapper,
.info-hotspot .info-hotspot-close-wrapper {
  display: none;
}

.info-hotspot .info-hotspot-dialog {
  position: absolute;
  width: auto;
  min-width: 500px;
  max-width: 600px;
  height: auto;
  top: 0;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
}

.desktop .info-hotspot.visible .info-hotspot-dialog {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.info-hotspot .dialog-header {
  background-color: #007bff;
  color: white;
  padding: 12px 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; 
}

.info-hotspot .dialog-title {
  font-weight: 600;
  font-size: 16px;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot .dialog-close-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.8;
}

.info-hotspot .dialog-close-icon:hover {
  opacity: 1;
}

.info-hotspot .dialog-content {
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.95);
  padding: 15px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  height: auto;
  overflow: visible;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: pre-wrap;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot .hotspot-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.info-hotspot .hotspot-button:hover {
  background-color: #0056b3;
}

.info-hotspot .hotspot-button:active {
  background-color: #004085;
}

.info-hotspot .info-hotspot-icon-wrapper {
  width: 40px;
  height: 40px;
}

.info-hotspot .hotspot-direct-button{
  width: 130px;
  height: 100%;
  padding: 12px 20px;
  background-color: #1e3a8a;
  color: white;
  border: 1px solid #3b82f6;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  outline: none;
  box-shadow: inset 0 0 0 1px #3b82f6;
}

.info-hotspot .hotspot-direct-button:hover {
  background-color: #1e40af;
  border-color: #60a5fa;
  transform: scale(1.05);
}

.info-hotspot .hotspot-direct-button:active {
  background-color: #1d4ed8;
  border-color: #93c5fd;
  transform: scale(0.95);
}

.info-hotspot .hotspot-direct-button .button-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.info-hotspot .info-hotspot-dialog::before {
  display: none;
}

.info-hotspot .info-hotspot-text {
  display: none;
}

/* Image hotspot styles - remove info hotspot styling */
.image-hotspot {
  opacity: 0.9;
}

.image-hotspot .info-hotspot-header {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  box-shadow: none;
}

.mobile .image-hotspot .info-hotspot-header {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.image-hotspot .info-hotspot-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile .image-hotspot .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.image-hotspot .info-hotspot-icon {
  width: 100%;
  height: 100%;
  margin: 0;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.image-hotspot .info-hotspot-dialog {
  position: absolute;
  width: auto;
  min-width: 500px;
  max-width: 600px;
  height: auto;
  top: 0;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
}

.desktop .image-hotspot.visible .info-hotspot-dialog {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-hotspot .dialog-header {
  background-color: #007bff;
  color: white;
  padding: 12px 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.image-hotspot .dialog-title {
  font-weight: 600;
  font-size: 16px;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.image-hotspot .dialog-close-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.8;
}

.image-hotspot .dialog-close-icon:hover {
  opacity: 1;
}

.image-hotspot .dialog-content {
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.95);
  padding: 15px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  height: auto;
  overflow: visible;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: pre-wrap;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.image-hotspot .info-hotspot-dialog::before {
  display: none;
}

.image-hotspot .info-hotspot-text {
  display: none;
}

.desktop .image-hotspot-modal {
  display: none;
}

.image-hotspot-modal {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 11000 !important;
  background-color: rgba(0,0,0,.5);
  line-height: 1.2em;
  opacity: 0;
  visibility: hidden;
}

.image-hotspot-modal.visible {
  opacity: 1;
  visibility: visible;
}

.image-hotspot-modal .dialog-header {
  position: absolute;
  top: 60px;
  left: 10px;
  right: 10px;
  width: auto;
  height: 50px;
  background-color: #007bff;
  background-color: rgba(0,123,255,0.95);
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  border-radius: 8px 8px 0 0;
}

.image-hotspot-modal.visible .dialog-header {
  opacity: 1;
}

.image-hotspot-modal .dialog-title {
  font-weight: 600;
  font-size: 16px;
  color: white;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.image-hotspot-modal .dialog-close-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.8;
}

.image-hotspot-modal .dialog-close-icon:hover {
  opacity: 1;
}

.image-hotspot-modal .dialog-content {
  position: absolute;
  top: 110px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 15px;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.95);
  overflow: visible;
  opacity: 0;
  border-radius: 0 0 8px 8px;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: pre-wrap;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.image-hotspot-modal.visible .dialog-content {
  opacity: 1;
}

.no-touch .image-hotspot:hover {
  opacity: 1;
}

.image-hotspot.visible {
  opacity: 1;
}

.image-hotspot:active .info-hotspot-icon {
  transform: scale(0.95);
}


.desktop .info-hotspot-modal {
  display: none;
}

.info-hotspot-modal {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 11000 !important;
  background-color: rgba(0,0,0,.5);
  line-height: 1.2em;
  opacity: 0;
  visibility: hidden;
}

.info-hotspot-modal.visible {
  opacity: 1;
  visibility: visible;
}

.info-hotspot-modal .dialog-header {
  position: absolute;
  top: 60px;
  left: 10px;
  right: 10px;
  width: auto;
  height: 50px;
  background-color: #007bff;
  background-color: rgba(0,123,255,0.95);
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  border-radius: 8px 8px 0 0;
}

.info-hotspot-modal.visible .dialog-header {
  opacity: 1;
}

.info-hotspot-modal .dialog-title {
  font-weight: 600;
  font-size: 16px;
  color: white;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal .dialog-close-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.8;
}

.info-hotspot-modal .dialog-close-icon:hover {
  opacity: 1;
}

.info-hotspot-modal .dialog-content {
  position: absolute;
  top: 110px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 15px;
  background-color: rgb(58,68,84);
  background-color: rgba(58,68,84,0.95);
  overflow: visible;
  opacity: 0;
  border-radius: 0 0 8px 8px;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: pre-wrap;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal .hotspot-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.info-hotspot-modal .hotspot-button:hover {
  background-color: #0056b3;
}

.info-hotspot-modal .hotspot-button:active {
  background-color: #004085;
}

.info-hotspot-modal.visible .dialog-content {
  opacity: 1;
}


.viewControlButton {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgb(103,115,131);
  background-color: rgba(103,115,131,0.8);
}

body.view-control-buttons .viewControlButton {
  display: block;
}

@media (max-width: 600px) {
  body.view-control-buttons .viewControlButton {
    display: none;
  }
}

.viewControlButton .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.viewControlButton-1 {
  margin-left: -145px;
}
.viewControlButton-2 {
  margin-left: -95px;
}
.viewControlButton-3 {
  margin-left: -45px;
}
.viewControlButton-4 {
  margin-left: 5px;
}
.viewControlButton-5 {
  margin-left: 55px;
}
.viewControlButton-6 {
  margin-left: 105px;
}

.navigation-map-container {
  position: relative;
  z-index: 1000;
  pointer-events: auto;
  visibility: visible !important;
  opacity: 1 !important;
  padding: 8px;
}

.navigation-map-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  overflow-x: visible;
}

.container-right {
  position: relative;
  z-index: 1000;
  overflow: visible;
}


.link-hotspot img[src*="image.svg"],
.link-hotspot img[src*="video.svg"] {
  width: 100%;
  height: 100%;
  max-width: 35px;
  max-height: 35px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.link-hotspot img[src*="facebook.svg"],
.link-hotspot img[src*="linkedin.svg"],
.link-hotspot img[src*="clutch.svg"],
.link-hotspot img[src*="behance.svg"] {
  width: 50%;
  height: 50%;
  max-width: 30px;
  max-height: 30px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.mobile .link-hotspot img[src*="image.svg"],
.mobile .link-hotspot img[src*="video.svg"] {
  width: 50%;
  height: 50%;
  max-width: 25px;
  max-height: 25px;
}

.mobile .link-hotspot img[src*="facebook.svg"] {
  width: 50%;
  height: 50%;
  max-width: 20px;
  max-height: 20px;
}

.no-touch .link-hotspot:hover img[src*="image.svg"],
.no-touch .link-hotspot:hover img[src*="video.svg"] {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)) 
          drop-shadow(0 0 25px rgba(0, 123, 255, 0.4));
}

.no-touch .link-hotspot:hover img[src*="facebook.svg"] {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)) 
          drop-shadow(0 0 25px rgba(24, 119, 242, 0.4));
}

.link-hotspot:active img[src*="image.svg"],
.link-hotspot:active img[src*="video.svg"] {
  transform: scale(0.95);
}

.link-hotspot:active img[src*="facebook.svg"] {
  transform: scale(0.95);
}

.no-touch .link-hotspot:hover {
  opacity: 1;
  transform: scale(1.05);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.no-touch .link-hotspot:hover img[src*="image.svg"] {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) 
          drop-shadow(0 0 35px rgba(0, 123, 255, 0.6))
          drop-shadow(0 0 50px rgba(0, 123, 255, 0.3));
}

.no-touch .link-hotspot:hover img[src*="video.svg"] {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) 
          drop-shadow(0 0 35px rgba(220, 53, 69, 0.6))
          drop-shadow(0 0 50px rgba(220, 53, 69, 0.3));
}

.no-touch .link-hotspot:hover img[src*="facebook.svg"] {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) 
          drop-shadow(0 0 35px rgba(24, 119, 242, 0.6))
          drop-shadow(0 0 50px rgba(24, 119, 242, 0.3));
}

#sceneList::-webkit-scrollbar {
  width: 8px;
}

#sceneList::-webkit-scrollbar-track {
  background: rgba(58, 68, 84, 0.3);
  border-radius: 4px;
}

#sceneList::-webkit-scrollbar-thumb {
  background: rgba(103, 115, 131, 0.8);
  border-radius: 4px;
}

#sceneList::-webkit-scrollbar-thumb:hover {
  background: rgba(103, 115, 131, 1);
}

#sceneList {
  scrollbar-width: thin;
  scrollbar-color: rgba(103, 115, 131, 0.8) rgba(58, 68, 84, 0.3);
}

#toggleMapButton {
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

#toggleMapButton:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

#toggleMapButton:active {
  transform: scale(0.95);
}


.navigation-map-container img[style*="display: none"] {
  opacity: 0;
  transform: scale(0.8);
}

.navigation-map-container img[style*="display: block"] {
  opacity: 1;
  transform: scale(1);
}

.clickableRect {
  cursor: pointer;
  pointer-events: all;
}

g.clickableRect circle:first-child {
  fill: none;
  stroke: #0060FF;
}
g.clickableRect circle:last-child {
  fill: #0060FF;
}

g.clickableRect.active circle:first-child {
  fill: #FF00E6;
  fill-opacity: 0.2;
  stroke: none;
} 
g.clickableRect.active circle:last-child {
  fill: #FF00E6;
}

g.clickableRect.special-case circle:first-child {
  fill: #FF00E6;
  fill-opacity: 0.3;
  stroke: #FF00E6;
  stroke-width: 2;
}
g.clickableRect.special-case circle:last-child {
  fill: #FF00E6;
}

rect.clickableRect.special-case {
  fill: #FF00E6 !important;
  stroke: #FF00E6;
  stroke-width: 2;
}

.highlight-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.highlight-dialog .dialog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-dialog .dialog-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
}

.highlight-dialog .dialog-header {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.highlight-dialog .dialog-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.highlight-dialog .dialog-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.highlight-dialog .dialog-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* General dialog close button styles */
.dialog-close {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.highlight-dialog .dialog-body {
  padding: 20px;
  color: #333;
  line-height: 1.6;
}

.highlight-dialog .dialog-body p {
  margin: 0;
  font-size: 14px;
}

.highlight-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.nav-btn-disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.nav-btn-disabled .justify-center {
  color: #9ca3af !important;
}

#productFooter {
  border-top: 2px solid #E5E5E5 !important;
}
                        
#chatModal input, #chatModal textarea {
  -moz-user-select: text !important;
  -webkit-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  color: #111827 !important;
  background-color: white !important;
}

#chatModal input:focus, #chatModal textarea:focus {
  outline: none !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

#chatModal {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#chatModal .bg-white {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


#chatMessages {
  scroll-behavior: smooth;
}

/* Chat message container */
#chatMessages .message-wrapper {
  margin-bottom: 1rem;
  display: flex;
}

#chatMessages .message-wrapper.ai-message {
  justify-content: flex-start;
}

#chatMessages .message-wrapper.user-message {
  justify-content: flex-end;
}

/* Message bubble container */
#chatMessages .message-content {
  max-width: 85%;
  min-width: 120px;
}

@media (min-width: 640px) {
  #chatMessages .message-content {
    max-width: 75%;
  }
}

@media (min-width: 768px) {
  #chatMessages .message-content {
    max-width: 320px;
  }
}

/* Message bubble */
#chatMessages .message-bubble {
  border-radius: 0.5rem;
  padding: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
}

#chatMessages .message-bubble.ai-bubble {
  background-color: #dbeafe;
  color: #1f2937;
  border-bottom-left-radius: 0.25rem;
}

#chatMessages .message-bubble.user-bubble {
  background-color: #3b82f6;
  color: white;
  border-bottom-right-radius: 0.25rem;
}

/* Timeline styling */
#chatMessages .message-timestamp {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#chatMessages .message-wrapper.ai-message .message-timestamp {
  justify-content: flex-start;
}

#chatMessages .message-wrapper.user-message .message-timestamp {
  justify-content: flex-end;
}

#chatMessages .timestamp {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1;
}

#chatMessages .message-wrapper.user-message .timestamp {
  color: #9ca3af;
}

/* Message text styling */
#chatMessages .message-bubble p {
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

#chatMessages .message-bubble p:last-child {
  margin-bottom: 0;
}

/* Status indicators */
#chatMessages .message-status {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

#chatMessages .status-icon {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.7;
}

/* Long message handling */
#chatMessages .message-content.long-message {
  max-width: 90%;
}

@media (min-width: 640px) {
  #chatMessages .message-content.long-message {
    max-width: 80%;
  }
}

@media (min-width: 768px) {
  #chatMessages .message-content.long-message {
    max-width: 400px;
  }
}



#chatMessages::-webkit-scrollbar {
  width: 6px;
}

#chatMessages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

#chatMessages::-webkit-scrollbar-thumb {
  background: rgba(0, 123, 255, 0.6);
  border-radius: 3px;
}

#chatMessages::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 123, 255, 0.8);
}

#chatMessages {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 123, 255, 0.6) rgba(0, 0, 0, 0.1);
}



.user-message {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  margin-left: auto;
  margin-right: 0;
  max-width: 80%;
  min-width: fit-content;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 18px 18px 4px 18px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.ai-message {
  background: #f1f5f9;
  color: #334155;
  margin-right: auto;
  margin-left: 0;
  max-width: 80%;
  min-width: fit-content;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Product Modal Responsive Fixes */
#productModal .highlight-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#productModal .fixed {
  padding: 0.5rem;
}

@media (max-width: 640px) {
  #productModal .fixed {
    padding: 0.25rem;
  }
  
  #productModal .max-h-\[90vh\] {
    max-height: 95vh;
  }
  
  #productModal .w-48 {
    width: 8rem;
    height: 8rem;
  }
  
  #productModal .gap-4 {
    gap: 0.75rem;
  }
  
  #productModal .p-4 {
    padding: 0.75rem;
  }
  
  #productModal .text-xl {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  
  #productModal .leading-\[48px\] {
    line-height: 1.75rem;
  }
}

@media (max-width: 480px) {
  #productModal .fixed {
    padding: 0.125rem;
  }
  
  #productModal .max-h-\[90vh\] {
    max-height: 98vh;
  }
  
  #productModal .w-48 {
    width: 6rem;
    height: 6rem;
  }
  
  #productModal .gap-4 {
    gap: 0.5rem;
  }
  
  #productModal .p-4 {
    padding: 0.5rem;
  }
  
  #productModal .text-xl {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  
  #productModal .leading-\[48px\] {
    line-height: 1.5rem;
  }
  
  #productModal .text-sm {
    font-size: 0.75rem;
  }
  
  #productModal .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  #productModal .py-2\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }
}

.button-tooltip {
  position: relative;
}

/* Default (>1280px): Tooltip appears on TOP */
.button-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 8px);
  margin-bottom: 8px;
  
  padding: 8px 12px;
  border-radius: 6px;
  
  background-color: rgba(58, 68, 84, 0.95);
  color: #fff;
  
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.button-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* <= 1280px (xl): Tooltip appears on BOTTOM */
@media (max-width: 1280px) {
  .button-tooltip::after {
    left: 50%;
    bottom: auto;
    top: 100%;
    transform: translate(-50%, -8px);
    margin-bottom: 0;
    margin-top: 8px;
  }
  
  .button-tooltip:hover::after {
    transform: translate(-50%, 0);
  }
}

/* <= 640px (sm): Tooltip appears on RIGHT */
@media (max-width: 768px) {
  .button-tooltip::after {
    left: 100%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) translateX(-8px);
    margin-top: 0;
    margin-left: 8px;
  }
  
  .button-tooltip:hover::after {
    transform: translateY(-50%) translateX(0);
  }
}

.bar-control {
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.bar-control:hover {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.bar-control:active {
  transform: scale(0.95);
}

/* Product Features - xxs screens (<375px) - Each feature in separate row, rating and title side by side */
@media (max-width: 375px) {
  #productFeatures {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  #productFeatures .feature-item {
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
  
  #productFeatures .feature-content {
    flex-direction: row !important;
    gap: 0.75rem !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  #productFeatures .feature-content > div {
    align-self: center !important;
  }
  
  #productFeatures .feature-title {
    height: auto !important;
    text-align: left !important;
    flex: 1 !important;
  }
  
  #productDots {
    display: none !important;
  }
  
  #chatModal .p-3 {
    padding: 0.5rem !important;
  }
  
  [style*="height: 64px"] {
    height: 56px !important;
    padding: 0.5rem !important;
  }
  
  #chatInput {
    padding: 0.5rem 0.625rem !important;
    font-size: 0.8125rem !important;
    min-width: 0 !important;
  }
  
  #chatInput::placeholder {
    font-size: 0.75rem !important;
  }
  
  #voiceButton {
    padding: 0.5rem !important;
    min-width: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  #voiceButton svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  #sendMessage {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8125rem !important;
    min-width: fit-content !important;
  }
  
  .flex.gap-2 {
    gap: 0.375rem !important;
  }
  
  #chatMessages {
    padding: 0.625rem !important;
  }
  
  #chatModal .bg-gradient-to-r {
    padding: 0.75rem !important;
  }
  
  #chatModal .text-xl {
    font-size: 1rem !important;
  }
  
  #closeChatModal svg {
    width: 1.125rem !important;
    height: 1.125rem !important;
  }
}