/*
  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;
}

/* Truncate text to 2 lines */
.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 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;
}

/* .slick-dots {
  background-color: #cbcbcb59;
  margin: 0 auto;
  border-radius: 8px;
  height: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  bottom: 4px !important;
  width: unset !important;
} */
.slick-dots {
  bottom: 0px !important;
  background-color: #dedede66;
}

.slick-dots li {
  margin: 0 !important;
}

.slick-initialized {
  /* display: flex !important; */
  justify-content: center;
}

.text-color-primary {
  color: #2D63AE
}

@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;
  }
}
