@tailwind base;
@tailwind components;
@tailwind utilities;
body {
  font-family: Arial, sans-serif;
}
table {
  @apply w-full border-collapse;
}
th, td {
  @apply p-2 text-left;
}
tr {
  @apply border-b;
}
button {
  @apply px-4 py-2 rounded text-white;
}
.bg-green-500 {
  @apply bg-green-500 hover:bg-green-600;
}
.bg-red-500 {
  @apply bg-red-500 hover:bg-red-600;
}
