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

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/

/* ── Chat bubbles — Main courante ──────────────────────────────────────── */

/* Bulle par défaut : message des autres (gauche) */
.entry-body {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  border-radius: 4px 14px 14px 14px;
}

/* Pièces jointes par défaut */
.entry-attachment-link {
  background: #f1f5f9;
  color: #475569;
}
.entry-attachment-link:hover {
  background: #e2e8f0;
}

/* Bulle "moi" : message courant (droite) */
.entry-bubble.is-mine {
  flex-direction: row-reverse;
}
.entry-bubble.is-mine .entry-avatar {
  display: none;
}
.entry-bubble.is-mine .entry-content {
  align-items: flex-end;
}
.entry-bubble.is-mine .entry-author {
  display: none;
}
.entry-bubble.is-mine .entry-time {
  text-align: right;
}
.entry-bubble.is-mine .entry-body {
  background: var(--color-primary);
  border: none;
  box-shadow: none;
  border-radius: 14px 4px 14px 14px;
  /* Couleurs prose pour fond coloré */
  --tw-prose-body: rgba(255,255,255,0.95);
  --tw-prose-headings: #ffffff;
  --tw-prose-links: rgba(255,255,255,0.9);
  --tw-prose-bold: #ffffff;
  --tw-prose-bullets: rgba(255,255,255,0.7);
  --tw-prose-counters: rgba(255,255,255,0.7);
  --tw-prose-quotes: rgba(255,255,255,0.85);
  --tw-prose-code: #ffffff;
  color: rgba(255,255,255,0.95);
}
.entry-bubble.is-mine .entry-attachment-link {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}
.entry-bubble.is-mine .entry-attachment-link:hover {
  background: rgba(255,255,255,0.3);
}
