/* tailwind-custom.css */
@import url("https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css");

body {
  background-color: #111827; /* équivalent bg-gray-900 */
  color: #f9fafb;           /* équivalent text-gray-50 */
  font-family: Arial, sans-serif;
}

.btn-primary {
  background-color: #2563eb; /* bleu-600 */
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.2s;
}
.btn-primary:hover {
  background-color: #1d4ed8; /* bleu-700 */
}

.table-header {
  background-color: #1f2937; /* gris-800 */
  color: #fff;
}
.table-row:nth-child(even) {
  background-color: #374151; /* gris-700 */
}
