@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  * {
    @apply border-gray-700;
  }
  body {
    @apply bg-dark-900 text-gray-100 font-sans;
  }
}

@layer components {
  .btn-primary {
    @apply bg-primary-600 hover:bg-primary-700 text-white font-semibold py-2.5 px-5 rounded-lg transition-all duration-200 disabled:opacity-50 disabled:cursor-not-allowed focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 focus:ring-offset-dark-900;
  }
  .btn-secondary {
    @apply bg-dark-800 hover:bg-gray-700 text-gray-200 font-semibold py-2.5 px-5 rounded-lg transition-all duration-200 border border-gray-600 focus:outline-none focus:ring-2 focus:ring-gray-500;
  }
  .btn-danger {
    @apply bg-red-600 hover:bg-red-700 text-white font-semibold py-2.5 px-5 rounded-lg transition-all duration-200;
  }
  .input-field {
    @apply w-full bg-dark-800 border border-gray-600 rounded-lg px-4 py-3 text-gray-100 placeholder-gray-500 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent transition-all duration-200;
  }
  .card {
    @apply bg-dark-800 rounded-xl border border-gray-700/50 p-6;
  }
  .label {
    @apply block text-sm font-medium text-gray-300 mb-1.5;
  }
}
