/* modal.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Estilos adicionales opcionales */
.modal-overlay {
  @apply fixed inset-0 bg-black bg-opacity-50 hidden items-center justify-center z-50;
}

.modal-box {
  @apply bg-white rounded-lg shadow-lg p-6 w-96 text-center;
}
