/* ================================================================
   STRIDE FOOTBALL — Design System
   Referinta: credite.php, planuri.php, cand-joc.php
   Font stack: Poppins 200/300/400/500/600
   Palete: cream #f8f3d9, rosu #D62828, bg dark #141614
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
  --stride-cream: #f8f3d9;
  --stride-cream-45: rgba(248,243,217,0.45);
  --stride-cream-28: rgba(248,243,217,0.28);
  --stride-cream-15: rgba(248,243,217,0.15);
  --stride-red: #D62828;
  --stride-red-soft: rgba(214,40,40,0.10);
  --stride-red-med: rgba(214,40,40,0.20);
  --stride-bg: #141614;
  --stride-panel: rgba(255,255,255,0.025);
  --stride-panel-hover: rgba(255,255,255,0.045);
  --stride-panel-strong: rgba(255,255,255,0.055);
  --stride-border-soft: rgba(255,255,255,0.06);
  --stride-border: rgba(255,255,255,0.10);
  --stride-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- FONT TOKEN ---------- */
.ds-font     { font-family: 'Poppins', system-ui, -apple-system, sans-serif; }

/* ---------- HEADINGS ---------- */
.ds-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--stride-red);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.85;
}
.ds-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--stride-cream);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.ds-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--stride-cream);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.ds-h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--stride-cream);
  letter-spacing: -0.01em;
}
.ds-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--stride-cream-45);
  line-height: 1.55;
}
.ds-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--stride-cream-45);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ---------- NUMERE MARI ---------- */
.ds-big-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--stride-cream);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ---------- CARDURI ---------- */
.ds-card {
  background: var(--stride-panel);
  border: 1px solid var(--stride-border-soft);
  border-radius: 20px;
  padding: 1.5rem;
  transition: var(--stride-transition);
}
.ds-card-lg {
  background: var(--stride-panel);
  border: 1px solid var(--stride-border-soft);
  border-radius: 28px;
  padding: 2rem;
  transition: var(--stride-transition);
}
.ds-card:hover,
.ds-card-lg:hover {
  background: var(--stride-panel-hover);
  border-color: var(--stride-border);
}
.ds-card-interactive {
  cursor: pointer;
}
.ds-card-interactive:hover {
  transform: translateY(-1px);
}

/* ---------- BUTOANE ---------- */
.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--stride-transition);
  text-decoration: none;
  white-space: nowrap;
}
.ds-btn-primary {
  background: var(--stride-red);
  color: #fff;
}
.ds-btn-primary:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}
.ds-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--stride-cream);
  border-color: var(--stride-border-soft);
}
.ds-btn-ghost:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  border-color: var(--stride-border);
}
.ds-btn-danger {
  background: rgba(214,40,40,0.12);
  color: var(--stride-red);
  border-color: rgba(214,40,40,0.25);
}
.ds-btn-danger:hover:not(:disabled) {
  background: rgba(214,40,40,0.18);
}
.ds-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ds-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 12px;
}
.ds-btn-lg {
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  border-radius: 18px;
}

/* ---------- INPUTS ---------- */
.ds-input,
.ds-textarea,
.ds-select {
  display: block;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--stride-cream);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--stride-border-soft);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: var(--stride-transition);
}
.ds-input:focus,
.ds-textarea:focus,
.ds-select:focus {
  border-color: var(--stride-red);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.08);
}
.ds-input::placeholder,
.ds-textarea::placeholder {
  color: var(--stride-cream-28);
}
.ds-textarea { resize: vertical; min-height: 80px; }

/* ---------- BADGES / CHIPS ---------- */
.ds-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  color: var(--stride-cream-45);
  border: 1px solid var(--stride-border-soft);
}
.ds-chip-red {
  background: var(--stride-red-soft);
  color: var(--stride-red);
  border-color: rgba(214,40,40,0.2);
}

/* ---------- DIVIDER SOFT ---------- */
.ds-divider {
  height: 1px;
  background: var(--stride-border-soft);
  border: 0;
  margin: 1.5rem 0;
}

/* ---------- PANEL SECTION (pentru pagini legal / text) ---------- */
.ds-prose {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--stride-cream);
  line-height: 1.7;
  font-size: 0.95rem;
}
.ds-prose h1 { font-weight: 300; font-size: 2.25rem; letter-spacing: -0.02em; margin: 2rem 0 1rem; color: var(--stride-cream); }
.ds-prose h2 { font-weight: 400; font-size: 1.5rem; letter-spacing: -0.015em; margin: 2rem 0 0.75rem; color: var(--stride-cream); }
.ds-prose h3 { font-weight: 500; font-size: 1.15rem; margin: 1.5rem 0 0.5rem; color: var(--stride-cream); }
.ds-prose p  { margin: 0 0 1rem; color: rgba(248,243,217,0.72); }
.ds-prose ul, .ds-prose ol { padding-left: 1.25rem; margin: 0 0 1rem; color: rgba(248,243,217,0.72); }
.ds-prose li { margin: 0.4rem 0; }
.ds-prose a  { color: var(--stride-red); text-decoration: none; }
.ds-prose a:hover { text-decoration: underline; }
.ds-prose strong { color: var(--stride-cream); font-weight: 500; }
.ds-prose hr { border: 0; border-top: 1px solid var(--stride-border-soft); margin: 2rem 0; }
.ds-prose code {
  font-family: 'JetBrains Mono', Monaco, monospace;
  font-size: 0.85em;
  background: rgba(255,255,255,0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}

/* ---------- LAYOUT HELPERS ---------- */
.ds-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.ds-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.ds-section {
  padding-top: clamp(4rem, 10vh, 8rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

/* ---------- TABLE MINIMAL ---------- */
.ds-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.ds-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: var(--stride-cream-45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--stride-border-soft);
}
.ds-table td {
  font-size: 0.9rem;
  color: var(--stride-cream);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--stride-border-soft);
}
.ds-table tr:hover td {
  background: var(--stride-panel-hover);
}
.ds-table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- ANIMATIONS ---------- */
@keyframes ds-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ds-animate-in { animation: ds-fade-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both; }

/* ---------- SCROLLBAR SUBTLE ---------- */
.ds-scroll::-webkit-scrollbar { width: 6px; height: 6px; }
.ds-scroll::-webkit-scrollbar-track { background: transparent; }
.ds-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 999px; }
.ds-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

/* ---------- RESPONSIVE UTILITIES ---------- */
@media (max-width: 640px) {
  .ds-h1 { font-size: 2rem; }
  .ds-card, .ds-card-lg { padding: 1.25rem; border-radius: 18px; }
  .ds-section { padding-top: 3rem; padding-bottom: 2.5rem; }
}

/* ============================================================================
   STRIDE CHAT WIDGET — design inspirat de chat.php
   Folosit in: echipa.php, admin/chaturi.php, meci.php (via widget)
   ============================================================================ */

/* --- Row --- */
.sc-row {
  display: flex;
  gap: 10px;
  padding: 2px 0;
  position: relative;
}
.sc-row.mine { flex-direction: row-reverse; }
.sc-av-link { flex-shrink: 0; display: block; line-height: 0; }
.sc-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s;
}
.sc-av:hover { opacity: 0.85; }
.sc-av-ini {
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 13px;
}
.sc-body {
  max-width: min(80%, 540px);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sc-row.mine .sc-body { align-items: flex-end; }

/* --- Nume (deasupra bubble-ului, doar non-mine) --- */
.sc-nume {
  font-size: 11px;
  font-weight: 600;
  color: rgba(248,243,217,0.55);
  margin-bottom: 3px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.sc-nume:hover { text-decoration: underline; color: rgba(248,243,217,0.85); }

/* --- Bubble --- */
.sc-bubble {
  padding: 9px 13px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  color: #f8f3d9;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  position: relative;
  max-width: 100%;
  border-top-left-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.sc-row.mine .sc-bubble {
  background: var(--stride-red);
  color: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 6px;
}
.sc-bubble-sters { font-style: italic; opacity: 0.55; font-size: 13px; }
.sc-bubble-cap { margin-top: 6px; }

/* Imagine in bubble */
.sc-image {
  max-width: 280px; max-height: 360px;
  border-radius: 14px;
  cursor: pointer;
  display: block;
}
.sc-bubble:has(.sc-image) { padding: 4px; background: transparent; }

/* --- Reply quote (deasupra bubble) --- */
.sc-reply {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(214,40,40,0.08);
  border-radius: 12px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.15s;
  max-width: 100%;
}
.sc-reply:hover { background: rgba(214,40,40,0.15); }
.sc-reply-icon { color: #D62828; flex-shrink: 0; margin-top: 1px; line-height: 0; }
.sc-reply-icon svg { width: 12px; height: 12px; }
.sc-reply-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sc-reply-name {
  color: #D62828;
  font-weight: 600;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
}
.sc-reply-excerpt {
  color: rgba(248,243,217,0.6);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Reactii (sub bubble) --- */
.sc-reactions {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-top: 5px; padding: 0 4px;
}
.sc-react {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 8px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: #f8f3d9;
  cursor: pointer;
  border: 0;
  transition: all 0.15s;
  font-family: 'Poppins', sans-serif;
}
.sc-react:hover { background: rgba(255,255,255,0.12); }
.sc-react.mine {
  background: rgba(214,40,40,0.20);
  border: 1px solid rgba(214,40,40,0.35);
}

/* --- Meta row (timp + actiuni inline) — NU ia spatiu vertical --- */
.sc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
  padding: 0 4px;
  font-size: 10px;
  color: rgba(248,243,217,0.35);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  min-height: 20px;
}
.sc-time { white-space: nowrap; }
.sc-chip {
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  font-size: 9px;
  font-weight: 500;
}
.sc-actions {
  display: flex;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.15s;
}
.sc-row:hover .sc-actions,
.sc-row:focus-within .sc-actions { opacity: 1; }
.sc-act-btn {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: transparent;
  border: 0;
  color: rgba(248,243,217,0.45);
  cursor: pointer;
  transition: all 0.15s;
  padding: 0;
}
.sc-act-btn svg { width: 12px; height: 12px; display: block; }
.sc-act-btn:hover { background: rgba(255,255,255,0.08); color: #f8f3d9; }
.sc-act-btn.danger:hover { background: rgba(239,68,68,0.15); color: #fca5a5; }

/* Flash highlight la jump reply */
@keyframes sc-flash-kf {
  0%, 100% { background: transparent; }
  30%      { background: rgba(214,40,40,0.14); }
}
.sc-row.sc-flash { animation: sc-flash-kf 1.5s ease; border-radius: 14px; }

/* --- Composer reply bar (apare deasupra inputului cand raspunzi) --- */
.sc-composer-reply {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(214,40,40,0.10);
  border-radius: 12px;
  margin: 0 0.75rem;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}
.sc-composer-reply-txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.sc-composer-reply .sc-reply-name {
  color: #D62828;
  font-weight: 600;
  font-size: 11px;
}
.sc-composer-reply .sc-reply-excerpt {
  color: rgba(248,243,217,0.6);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-composer-reply-close {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: transparent;
  border: 0;
  color: rgba(248,243,217,0.55);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.sc-composer-reply-close:hover { background: rgba(255,255,255,0.08); color: #f8f3d9; }
.sc-composer-reply-close svg { width: 12px; height: 12px; }

/* --- React picker (apare la click pe smile in actiuni) --- */
.sc-react-picker {
  position: relative;
  margin-top: 6px;
  background: #1f211f;
  border-radius: 14px;
  padding: 4px;
  display: inline-flex;
  gap: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  width: fit-content;
}
.sc-react-picker button {
  background: none;
  border: 0;
  padding: 4px 6px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.12s;
  line-height: 1;
}
.sc-react-picker button:hover { background: rgba(255,255,255,0.08); transform: scale(1.15); }

/* --- Mentionari link style (produs de linkify) --- */
.sc-body .chat-mention {
  color: #60A5FA;
  background: rgba(96,165,250,0.14);
  padding: 1px 5px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- TEAM CHAT PANEL (folosit de echipa.php + meci.php) ---------- */
.ds-chat-panel {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
}
.ds-chat-panel-header {
  padding: 0.75rem 1rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
.ds-chat-panel-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(248,243,217,0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ds-chat-panel-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 0;
}
.ds-chat-msg {
  display: flex;
  gap: 0.6rem;
  padding: 0.35rem 0.5rem;
  border-radius: 12px;
  transition: var(--stride-transition);
}
.ds-chat-msg:hover { background: rgba(255,255,255,0.02); }
.ds-chat-msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ds-chat-msg-body { flex: 1; min-width: 0; }
.ds-chat-msg-head {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
  flex-wrap: wrap;
}
.ds-chat-msg-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--stride-cream);
}
.ds-chat-msg-time {
  font-size: 0.7rem;
  color: var(--stride-cream-28);
}
.ds-chat-msg-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(248,243,217,0.85);
  line-height: 1.45;
  word-break: break-word;
  white-space: pre-wrap;
  margin-top: 0.15rem;
}
.ds-chat-msg-reply {
  border-left: 2px solid var(--stride-red);
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.25rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--stride-cream-45);
}
.ds-chat-msg-image {
  margin-top: 0.35rem;
  max-width: 280px;
  max-height: 220px;
  border-radius: 12px;
  cursor: pointer;
}
.ds-chat-msg-reactions {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}
.ds-chat-react {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stride-border-soft);
  color: var(--stride-cream-45);
  cursor: pointer;
  transition: var(--stride-transition);
}
.ds-chat-react.me {
  background: var(--stride-red-soft);
  color: var(--stride-red);
  border-color: rgba(214,40,40,0.25);
}
.ds-chat-react:hover { background: rgba(255,255,255,0.08); }

/* Action butoane (reply/react/delete) — apar la hover pe mesaj */
.ds-chat-msg-actions {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.3rem;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.ds-chat-msg:hover .ds-chat-msg-actions,
.ds-chat-msg:focus-within .ds-chat-msg-actions {
  opacity: 1;
  pointer-events: auto;
}
.ds-chat-action-btn {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(248,243,217,0.55);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--stride-transition);
  padding: 0;
}
.ds-chat-action-btn svg { display: block; width: 13px; height: 13px; }
.ds-chat-action-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--stride-cream);
}
.ds-chat-action-btn.danger:hover {
  background: rgba(214,40,40,0.12);
  color: var(--stride-red);
  border-color: rgba(214,40,40,0.25);
}
.ds-chat-composer {
  padding: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  gap: 0.4rem;
  align-items: center;
  background: transparent;
}
.ds-chat-composer input[type="text"] {
  flex: 1;
  background: rgba(255,255,255,0.035);
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  color: var(--stride-cream);
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  transition: var(--stride-transition);
}
.ds-chat-composer input[type="text"]::placeholder { color: rgba(248,243,217,0.25); font-weight:300; }
.ds-chat-composer input[type="text"]:focus {
  background: rgba(255,255,255,0.06);
}
.ds-chat-icon-btn {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: rgba(248,243,217,0.55);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--stride-transition);
  flex-shrink: 0;
}
.ds-chat-icon-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--stride-cream);
}
.ds-chat-icon-btn svg { display: block; }
.ds-chat-send {
  background: var(--stride-red);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 38px; height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--stride-transition);
  flex-shrink: 0;
}
.ds-chat-send svg { display: block; transform: translateX(-1px); }
.ds-chat-send:hover:not(:disabled) { opacity: 0.9; }
.ds-chat-send:disabled { opacity: 0.4; cursor: not-allowed; }
.ds-chat-reply-preview {
  padding: 0.4rem 0.6rem;
  margin: 0 0.75rem;
  background: rgba(214,40,40,0.08);
  border-left: 2px solid var(--stride-red);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--stride-cream-45);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ds-chat-react-picker {
  position: absolute;
  background: #1b1d1b;
  border: 1px solid var(--stride-border);
  border-radius: 14px;
  padding: 0.35rem;
  display: flex;
  gap: 0.2rem;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.ds-chat-react-picker button {
  background: none;
  border: 0;
  padding: 0.3rem 0.4rem;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--stride-transition);
}
.ds-chat-react-picker button:hover { background: rgba(255,255,255,0.08); }
