@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #171717;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive and touch-friendly styles */
* {
  box-sizing: border-box;
}

/* Ensure touch targets are at least 44px */
.touch-manipulation {
  touch-action: manipulation;
  min-height: 44px;
  min-width: 44px;
}

/* Smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
body {
  overflow-x: hidden;
}

/* Better focus styles for accessibility */
button:focus,
input:focus,
select:focus {
  outline: 2px solid #3cd57f;
  outline-offset: 2px;
}

/* Mobile-first responsive text */
@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 641px) {
  html {
    font-size: 16px;
  }
}
