/* Apple-inspired Tailwind Customizations */
@layer base {
  html {
    font-family: 'Inter', 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #222;
  }
}

@layer components {
  .apple-card {
    @apply bg-white rounded-2xl shadow-lg p-8 border border-gray-100;
  }
  .apple-btn {
    @apply bg-blue-600 text-white font-semibold rounded-lg px-6 py-2 shadow hover:bg-blue-700 transition;
  }
  .apple-input {
    @apply border border-gray-300 rounded-lg px-4 py-2 focus:border-blue-500 focus:ring-1 focus:ring-blue-300 outline-none transition;
  }
}

@layer utilities {
  .apple-glass {
    backdrop-filter: blur(12px) saturate(180%);
    background-color: rgba(255,255,255,0.7);
    border-radius: 1rem;
    border: 1px solid rgba(200,200,200,0.2);
  }
}
