/*
  This file is intentionally left mostly blank.
  All styling is now handled by the Tailwind CSS utility-first framework,
  loaded via a CDN script in index.html and applied directly in the TSX component.
*/

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.5); /* gray-400 with opacity */
  border-radius: 9999px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.8); /* gray-500 with opacity */
}

gmp-internal-camera-control {
  display: none !important;
}

@keyframes slide-left {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

@keyframes slide-right {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}


.animate-slide-left {
  animation: slide-left 0.35s ease-out forwards;
}

.animate-slide-right {
  animation: slide-right 0.35s ease-out forwards;
}

@media only screen and (max-width: 435px) {
  .gm-style-mtc-bbw {
    left: 0;
    top: 56px !important;
  }
}
