/* ══════════════════════════════════════════════════════════════════════
   Chatbot FAB + Recommendation Prompt + Insights Panel + Carrusel +
   Thinking animations

   Extraído de credentials.css (Anti-Monolith Sección XIV) — el archivo
   principal había crecido a 2272 líneas mezclando estilos del catálogo
   de modelos IA con TODA la UI del chatbot lateral, login overlay,
   cookies, agent wizard, etc.

   Este archivo concentra SOLO la barra/botón flotante de chat (FAB) y
   el panel de insights (recomendaciones de noticias en hover):
     - FAB redondo animado + thinking pulse + ideating bubble
     - Recommendation Prompt (¿quieres recomendaciones?)
     - Badge numérico de insights
     - Panel de Insights — temas + carrusel
     - Tap zones del carrusel + CTA mini panel genérico
     - Mobile responsive del FAB
   ══════════════════════════════════════════════════════════════════════ */

/* ── Chatbot FAB — Propuesta 2: Círculo animado premium ── */
.chatbot-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #9b6dff, var(--accent, #7c4dff) 70%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    border: none;
    box-shadow: 0 4px 20px rgba(124, 77, 255, 0.35);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    /* Outer ring via pseudo-element */
}
body.cookie-banner-active .chatbot-fab {
    bottom: 80px;
}
/* [bugfix 2026-05-04] Defensa CSS contra el flash del FAB al cargar la
   página con el chat abierto. React FabChatbot tiene `display:none` en
   su `style` cuando sidebarOpen=true, pero hay una race window entre el
   mount inicial (chatOpen=false → display:flex) y el sync del store →
   re-render. Esta regla hace que el FAB se oculte instantáneamente
   cuando body tiene `chat-open`, sin depender de timing de React. */
body.chat-open .chatbot-fab,
body.chat-open #fab-rec-prompt,
body.chat-open #fab-insight-panel {
    display: none !important;
}
/* [2026-05-13] Restaurado tras eliminación de workspace-modals.css en Fase 7
   de la Workspace Tailwind Migration. Regla original: commits acb5bb0 + 6d886f2.
   AI Analyst (chat sidebar + FAB) solo visible cuando body.view-feed está
   activo — cualquier landing/vista NO-feed (invite, ws-join, ws-delete, jobs,
   credits, teams, etc.) lo oculta por CSS, sin depender del state de React. */
body:not(.view-feed) #chat-sidebar,
body:not(.view-feed) #chatbot-fab,
body:not(.view-feed) #fab-rec-prompt,
body:not(.view-feed) #fab-insight-panel {
    display: none !important;
}
.chatbot-fab::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(124, 77, 255, 0.4);
    animation: fab-pulse 2.5s ease-in-out infinite;
}
.chatbot-fab::after {
    content: none;
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%);
    left: auto;
    bottom: auto;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(13, 13, 20, 0.95);
    border: 1px solid rgba(124, 77, 255, 0.3);
    color: #c4b5fd;
    font-size: 11px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.03em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-50%) translateX(4px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}
.chatbot-fab:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.chatbot-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(124, 77, 255, 0.5);
}
.chatbot-fab:hover::before {
    animation: none;
    border-color: rgba(124, 77, 255, 0.7);
}
.chatbot-fab i { width: 24px; height: 24px; }

/* ── FAB Recommendation Prompt (hover opt-in) ── */
.fab-rec-prompt {
    position: fixed;
    bottom: 33px;
    right: 94px;
    background: rgba(91, 33, 182, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(124, 77, 255, 0.35);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    white-space: nowrap;
}
.fab-rec-prompt.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.fab-rec-prompt span {
    color: #e6edf3;
    font-size: 0.82rem;
    font-weight: 500;
}
.fab-rec-prompt-actions {
    display: flex;
    gap: 6px;
}
.fab-rec-prompt-yes,
.fab-rec-prompt-no {
    padding: 4px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.fab-rec-prompt-yes {
    background: #7c3aed;
    color: #fff;
}
.fab-rec-prompt-yes:hover {
    background: #6d28d9;
}
.fab-rec-prompt-no {
    background: rgba(255, 255, 255, 0.1);
    color: #8b949e;
}
.fab-rec-prompt-no:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e6edf3;
}

/* ── FAB Badge numérico (insights pendientes) ── */
.fab-badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 20px; height: 20px;
    border-radius: 10px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: none;          /* se muestra vía JS */
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(239,68,68,0.5);
    animation: badge-pop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    z-index: 2;
}
.fab-badge.visible { display: flex; }
@keyframes badge-pop {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}

/* ── Panel de Insights (Agente de Conocimiento) ── */
.fab-insight-panel {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 700px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(8, 6, 18, 0.92) 0%, rgba(16, 10, 32, 0.92) 100%);
    border: 1px solid rgba(140, 100, 255, 0.5);
    border-radius: 16px;
    padding: 14px 36px 16px 16px;
    color: #ede8f5;
    font-size: 13px;
    line-height: 1.5;
    box-shadow:
        0 0 15px rgba(124, 77, 255, 0.3),
        0 0 40px rgba(124, 77, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    z-index: 1001;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(124,77,255,0.3) transparent;
}
/* ── Layout 2 columnas: temas (izq) + carrusel (der) ── */
.fab-panel-body {
    display: flex;
    gap: 0;
    align-items: stretch;
}
.fab-panel-left {
    width: 200px;
    min-width: 200px;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fab-panel-right {
    flex: 1;
    min-width: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fab-panel-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
    z-index: 2;
}
.fab-panel-close:hover {
    background: rgba(124,77,255,0.35);
    border-color: rgba(124,77,255,0.5);
    color: #fff;
}
.fab-panel-close svg { width: 14px; height: 14px; }
.fab-insight-panel.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.fab-panel-section { display: flex; flex-direction: column; gap: 6px; }
.fab-panel-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.fab-panel-label i { color: var(--accent); }

/* ── Topic chips ── */
#fab-panel-topics {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    flex: 1;
    justify-content: space-around;
}
.fab-topic-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(124, 77, 255, 0.35);
    color: #d6d0f0;
    padding: 5px 8px 5px 10px;
    border-radius: 0;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s;
    font-family: inherit;
    text-align: left;
    width: 100%;
    line-height: 1.4;
}
.fab-topic-chip:hover {
    border-left-color: var(--accent);
    background: rgba(124, 77, 255, 0.1);
    color: #fff;
    transform: translateX(3px);
}
.fab-topic-rank {
    font-size: 10px;
    font-weight: 700;
    color: rgba(124, 77, 255, 0.6);
    font-variant-numeric: tabular-nums;
    min-width: 18px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    transition: color 0.2s;
}
.fab-topic-chip:hover .fab-topic-rank {
    color: var(--accent);
}
.fab-topic-chip.active {
    border-left-color: var(--accent);
    background: rgba(124, 77, 255, 0.18);
    color: #fff;
    transform: translateX(3px);
}
.fab-topic-chip.active .fab-topic-rank {
    color: var(--accent);
}
.fab-topic-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

/* ── Carrusel ── */
.fab-carousel { position: relative; }
.fab-carousel-track { position: relative; }
.fab-carousel-slide {
    display: none;
    flex-direction: column;
    gap: 8px;
    animation: fabSlideIn 0.3s ease;
}
.fab-carousel-slide.active { display: flex; }
@keyframes fabSlideIn {
    from { opacity: 0; transform: translateX(6px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Card del artículo — magazine cover: imagen full-bleed + texto overlay */
.fab-slide-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.fab-slide-card:hover {
    transform: scale(1.015);
    border-color: rgba(124, 77, 255, 0.4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 12px rgba(124, 77, 255, 0.15);
}
.fab-slide-media {
    position: relative;
    width: 100%;
    height: 206px;
}
.fab-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: rgba(255, 255, 255, 0.05);
}
.fab-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 6, 18, 0.96) 0%,
        rgba(8, 6, 18, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 12px;
}
.fab-slide-counter {
    align-self: flex-end;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.fab-slide-bottom {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    position: relative;
    z-index: 4;
    border-radius: 4px;
    padding: 2px 4px;
    margin: -2px -4px;
    transition: background 0.15s ease;
}
.fab-slide-bottom:hover {
    background: rgba(255, 255, 255, 0.08);
}
.fab-rec-source {
    font-size: 9.5px;
    color: rgba(196, 181, 253, 0.65);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.fab-rec-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #f0ecff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}


/* Dots — barras segmentadas */
.fab-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}
.fab-carousel-dot {
    width: 16px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0;
    cursor: default;
    pointer-events: none;
    transition: width 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.fab-carousel-dot.active {
    width: 28px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(124, 77, 255, 0.55);
}

/* ── Tap zones de navegación del carrusel ── */
.fab-tap-prev,
.fab-tap-next {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.fab-tap-prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 10px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.28), transparent);
}
.fab-tap-next {
    right: 0;
    justify-content: flex-end;
    padding-right: 10px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.28), transparent);
}
.fab-tap-prev::after {
    content: '‹';
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
}
.fab-tap-next::after {
    content: '›';
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
}
.fab-slide-media:hover .fab-tap-prev,
.fab-slide-media:hover .fab-tap-next {
    opacity: 1;
}
.fab-tap-prev[hidden],
.fab-tap-next[hidden] {
    display: none;
}

#fab-panel-generic {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#fab-panel-generic .fab-panel-label {
    text-transform: none;
    font-size: 12.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

/* ── CTA mini para panel genérico (no logueados) ── */
.fab-panel-cta-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 10px;
    padding: 9px 12px;
    background: rgba(124,77,255,0.12);
    border: 1px solid rgba(124,77,255,0.25);
    border-radius: 10px;
    color: #c4b5fd;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fab-panel-cta-mini:hover {
    background: rgba(124,77,255,0.25);
    border-color: var(--accent);
    color: #fff;
}
.fab-panel-cta-mini i { color: var(--accent); }

/* ── FAB "ideating" — nube de pensamiento (thought bubble) ── */
.chatbot-fab.ideating {
    animation: fab-ideate-glow 3s ease-in-out infinite;
}
.chatbot-fab.ideating::before {
    display: none;
}

/* Speech bubble — sien derecha del bot */
.chatbot-fab.ideating .fab-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    top: -4px;
    right: -6px;
    min-width: 0;
    width: 32px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    background: linear-gradient(145deg, #5b21b6, #7c4dff);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 0 12px rgba(124, 77, 255, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.5);
    animation: fab-bubble-float 3s ease-in-out infinite;
}

/* Speech bubble arrow — sale del bottom-left apuntando al bot */
.chatbot-fab.ideating .fab-badge::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.7);
}
.chatbot-fab.ideating .fab-badge::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 7px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #6d28d9;
    z-index: 1;
}

/* Dots (estado base del ideating) */
.fab-badge .ideate-dot {
    display: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c4b5fd;
    animation: fab-dot-bounce 1.4s ease-in-out infinite;
}
.chatbot-fab.ideating .fab-badge .ideate-dot { display: block; }
.fab-badge .ideate-dot:nth-child(2) { animation-delay: 0.2s; }
.fab-badge .ideate-dot:nth-child(3) { animation-delay: 0.4s; }

/* Modo icono (cada 20s muestra un símbolo) */
.chatbot-fab.ideating .fab-badge.ideate-icon-mode {
    animation: fab-bubble-float 3s ease-in-out infinite, fab-icon-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.chatbot-fab.ideating .fab-badge.ideate-icon-mode svg {
    width: 14px;
    height: 14px;
    color: #c4b5fd;
    filter: drop-shadow(0 0 4px rgba(167, 139, 250, 0.5));
}

@keyframes fab-dot-bounce {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40%           { opacity: 1;   transform: scale(1.3); }
}
@keyframes fab-bubble-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}
@keyframes fab-icon-pop {
    0%   { transform: translateY(0) scale(0.6); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes fab-ideate-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(124, 77, 255, 0.35); }
    50%      { box-shadow: 0 4px 30px rgba(124, 77, 255, 0.6), 0 0 15px rgba(167, 139, 250, 0.3); }
}
@keyframes fab-ideate-orbit {
    0%   { transform: scale(1.15) rotate(0deg); }
    100% { transform: scale(1.15) rotate(360deg); }
}

/* ── FAB "thinking" pulse — más rápido que el idle ── */
.chatbot-fab.thinking::before {
    animation: fab-think-pulse 1.4s ease-in-out infinite;
    border-color: rgba(124, 77, 255, 0.6);
}
@keyframes fab-think-pulse {
    0%, 100% { transform: scale(1);   opacity: 0.6; }
    50%      { transform: scale(1.3); opacity: 0; }
}

@keyframes fab-pulse {
    0%   { transform: scale(1) rotate(0deg); opacity: 0; }
    30%  { opacity: 0.5; }
    50%  { transform: scale(1.25) rotate(180deg); opacity: 0.55; box-shadow: 0 0 12px 3px rgba(124, 77, 255, 0.3); }
    100% { transform: scale(1.4) rotate(360deg); opacity: 0; box-shadow: 0 0 0 rgba(124, 77, 255, 0); }
}

.chat-sidebar {
    position: fixed;
    top: 0;
    right: -31.5vw;
    width: 31.5vw;
    min-width: 380px;
    height: calc(100vh - 36px);
    background: #0e0e12; /* Solid Premium Dark */
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-sidebar.active { right: 0; }

/* ── Chatbot: Mobile responsive ── */
@media (max-width: 767px) {
    .chat-sidebar {
        width: 100vw;
        right: -100vw;
        height: 100vh;
        height: 100dvh;
        border-left: none;
    }
    .chat-sidebar.active { right: 0; }
    .chat-header { padding: 16px; }
    .chat-messages { padding: 16px; }
    .chat-input-area { padding: 16px; }
}

.chat-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}
.chat-title i { color: var(--accent); font-size: 1.4rem; }

/* ── Mini-FAB animado en header del chat ── */
.chat-header-fab {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #9b6dff, #7c4dff 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.chat-header-fab i,
.chat-header-fab svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.chat-header-fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(124, 77, 255, 0.4);
    animation: fab-pulse 2.5s ease-in-out infinite;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 20px;
    padding: 4px;
    transition: color 0.2s;
}
.chat-close:hover { color: var(--error); }

.chat-messages-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}
.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.message-bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}
.message-user {
    align-self: flex-end;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    color: white;
    border-bottom-right-radius: 4px;
}

