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

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

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

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