/* /chat/assets/css/chat_top_widget.css — Top widget (ribbon / info / audio) dla czatu */

/* Kontener widgetu nad listą wiadomości */
.chat-top-widget {
  padding: 8px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb, #eff6ff);
  transition: opacity 0.18s ease, transform 0.18s ease;
  will-change: opacity, transform;
}

.chat-top--hidden {
  display: none !important;
}

.chat-top-inner {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 8px 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Ikona / avatar / miniatura */
.chat-top-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #dbeafe;
  color: #1d4ed8;
  overflow: hidden;
}

.chat-top-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tekst */
.chat-top-content {
  flex: 1 1 auto;
  min-width: 0;
}

.chat-top-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-top-subtitle {
  font-size: 12px;
  color: #4b5563;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA / przyciski */
.chat-top-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-top-btn {
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: #111827;
  color: #f9fafb;
  white-space: nowrap;
}

.chat-top-btn.secondary {
  background: #e5e7eb;
  color: #111827;
}

/* Tryby specjalne */

/* INFO */
.chat-top-widget.top-type-info .chat-top-inner {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

/* PRODUCT RIBBON */
.chat-top-widget.top-type-ribbon .chat-top-inner {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
}

/* AUDIO */
.chat-top-widget.top-type-audio .chat-top-inner {
  background: #fefce8;
  border: 1px solid #facc15;
}

/* ALERT / WARNING */
.chat-top-widget.top-type-alert .chat-top-inner {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

/* Audio mini-player */
.chat-top-audio {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.chat-top-audio-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.chat-top-audio-meta {
  font-size: 11px;
  color: #6b7280;
}

.chat-top-audio audio {
  max-width: 180px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .chat-top-inner {
    padding: 8px 10px;
    gap: 8px;
  }

  .chat-top-title {
    font-size: 13px;
  }

  .chat-top-subtitle {
    display: none; /* bardziej kompaktowo na małym ekranie */
  }

  .chat-top-actions {
    display: none; /* podstawowo ukrywamy przyciski, można włączyć później */
  }

  .chat-top-audio audio {
    max-width: 140px;
  }
}