:root {
  --bg-main: #050509;
  --bg-card: rgba(10, 10, 16, 0.96);
  --bg-card-soft: rgba(12, 12, 18, 0.9);
  --accent: #ff1437;
  --accent-soft: rgba(255, 20, 55, 0.18);
  --accent-strong: #ff3150;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --text-main: #f7f7f7;
  --text-soft: #a4a4b5;
  --danger: #ff5263;
  --shadow-strong: 0 0 40px rgba(255, 20, 55, 0.35);
  --radius-xl: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1a0b12 0, #050509 52%, #020207 100%);
  color: var(--text-main);
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Subtle animated grid background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.2;
  pointer-events: none;
}

/* Main shell */
.auth-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(320px, 420px);
  gap: 2px;
  max-width: 860px;
  width: 100%;
  background: linear-gradient(
    130deg,
    rgba(255, 20, 55, 0.6),
    rgba(60, 6, 18, 0.3),
    rgba(7, 7, 10, 1)
  );
  padding: 1px;
  border-radius: 24px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  margin: 20px auto; /* center within page */
}

/* Panels */
.brand-panel {
  background: radial-gradient(circle at top, #300010, #050509 60%);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 999px;
  box-shadow: 0 0 40px rgba(255, 20, 55, 0.55);
  margin-bottom: 18px;
}

.brand-title {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 6px 0;
}

.brand-subtitle {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.auth-panel {
  background: var(--bg-card);
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
}

/* Panel header */
.panel-header h2 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-header p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.form-group input,
.form-group select {
  background: var(--bg-card-soft);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 10px 11px;
  font-size: 0.96rem;
  color: var(--text-main);
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-group input::placeholder {
  color: rgba(180, 180, 200, 0.5);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 20, 55, 0.6);
  background: #10101a;
}

/* Password field with eye */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

.eye-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.05rem;
  padding: 2px 6px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.eye-toggle:hover:not(:disabled) {
  background: rgba(255, 20, 55, 0.1);
  color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.eye-toggle:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Buttons */
.primary-btn,
.secondary-btn {
  font-family: inherit;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 20, 55, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.primary-btn:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

.secondary-btn {
  background: var(--bg-card-soft);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.08);
}

.secondary-btn:hover {
  background: #14141f;
  border-color: var(--accent);
}

/* Errors & helper text */
.form-error {
  min-height: 18px;
  font-size: 0.86rem;
  color: var(--danger);
}

.support-text {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.small-note {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* Alt links */
.alt-link {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.alt-link a {
  color: var(--accent);
  text-decoration: none;
}

.alt-link a:hover {
  text-decoration: underline;
}

/* TOS gate section */
.tos-gate {
  padding: 10px 12px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at left, rgba(255, 20, 55, 0.2), transparent 50%);
  border: 1px solid rgba(255, 20, 55, 0.3);
  margin-bottom: 4px;
}

.tos-info {
  margin: 0 0 8px;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.tos-status {
  margin: 8px 0 0;
  font-size: 0.84rem;
}

.tos-status span {
  font-weight: 600;
}

.tos-status-pending span {
  color: var(--danger);
}

.tos-status-agreed span {
  color: #48e39a;
}

/* DOB row */
.dob-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
}

.modal-content {
  position: relative;
  z-index: 51;
  background: #090910;
  border-radius: 18px;
  padding: 18px 18px 14px;
  max-width: 600px;
  width: calc(100% - 32px);
  max-height: calc(100% - 80px);
  border: 1px solid rgba(255, 20, 55, 0.6);
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
}

.modal-content h2 {
  margin: 0 0 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.tos-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #050509;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.tos-scroll h3 {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--accent-strong);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* Responsive */
@media (max-width: 720px) {
  body {
    padding: 12px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    margin: 12px auto;
  }

  .brand-panel {
    display: none;
  }

  .auth-panel {
    padding: 22px 20px 18px;
  }
}

/* Sidebar on the RIGHT, hidden by default */
#sideMenu.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: #06060a;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.75);
  transform: translateX(100%);          /* off-screen to the RIGHT */
  transition: transform 0.3s ease;
  z-index: 900;
}

/* When open: slide into view */
#sideMenu.side-menu.side-menu-open {
  transform: translateX(0);
}

/* Header / X button (you can keep your old styles if you have them) */
.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.side-close-btn {
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #f6f6ff;
  font-size: 16px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Floating hamburger that follows scroll */
#menuToggle.menu-toggle {
  position: fixed;
  top: 24px;
  right: 24px;                 /* stays near right side */
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

#menuToggle.menu-toggle .line {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #f6f6ff;
}

/* ---------------- Chat widget ---------------- */

#redxChat.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 16px;
  width: 320px;
  max-height: 420px;
  background: rgba(6, 6, 10, 0.98);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 960;
  font-family: "Rajdhani", system-ui, sans-serif;
}

/* Header bar (always visible, like the “Chat” bar in your screenshot) */
#redxChat .chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #101018;
  color: #f6f6ff;
  cursor: pointer;
}

#redxChat .chat-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#redxChat .chat-toggle-btn {
  border: none;
  background: transparent;
  color: #f6f6ff;
  font-size: 14px;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.2s ease;
}

/* Rotate arrow when open */
#redxChat.chat-open .chat-toggle-btn {
  transform: rotate(180deg);
}

/* Body section (search + content) */
#redxChat .chat-body {
  display: none;               /* hidden when minimized */
  flex-direction: column;
  padding: 10px 0 12px;
}

/* When open, show body */
#redxChat.chat-open .chat-body {
  display: flex;
}

/* Search bar look */
#redxChat .chat-search {
  padding: 0 12px 8px;
}

#redxChat .chat-search input {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  background: #191927;
  color: #999;
}

/* Empty state */
#redxChat .chat-empty {
  padding: 18px 14px 16px;
  text-align: left;
  font-size: 13px;
  color: #b5b5d0;
}

#redxChat .chat-empty p:first-child {
  font-weight: 600;
  margin-bottom: 4px;
}

/* ===== Notifications bell + panel ===== */

.notif-bell {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 2000;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 30% 0%, #ff2b55 0, #ff0040 18%, #111 52%, #05030a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.75);
}

.notif-bell-icon {
  font-size: 1.2rem;
}

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 0.65rem;
  background: #ff2b55;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Panel */

.notif-widget {
  position: fixed;
  top: 70px;
  right: 24px;
  width: 320px;
  max-height: 420px;
  z-index: 1999;
  border-radius: 18px;
  background: radial-gradient(circle at top, #2a1019 0, #050509 52%, #020207 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  display: none;
}

.notif-widget.notif-open {
  display: flex;
  flex-direction: column;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notif-body {
  display: flex;
  flex-direction: column;
  padding: 8px 10px 10px;
  gap: 6px;
  height: 100%;
}

.notif-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

.notif-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notif-item {
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.6));
  padding: 8px 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notif-main {
  display: flex;
  gap: 8px;
  align-items: center;
}

.notif-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.notif-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notif-meta {
  font-size: 0.8rem;
}

.notif-line {
  font-weight: 600;
}

.notif-id {
  opacity: 0.7;
  font-size: 0.7rem;
}

.notif-dismiss-btn {
  margin-left: auto;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
}

.notif-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.notif-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  padding: 3px 8px;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.notif-btn.accept {
  background: radial-gradient(circle at top, #ff285a 0, #ff0040 40%, #911 100%);
  border-color: transparent;
}

.notif-btn.decline {
  opacity: 0.85;
}

.notif-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.75rem;
}

.notif-page-arrow {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.notif-empty {
  margin: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Give the whole top bar some horizontal padding
   so the logo/nav aren't jammed against the edge/banner */
.top-bar {
  padding-inline: 1.75rem;   /* tweak this value until it looks perfect */
}

/* Nudge the logo a bit to the right */
.top-bar .brand-link {
  margin-left: 0.5rem;       /* small push away from the edge/banner */
}

/* If the three-line menu icon is also a little too far into the banner,
   this pulls it slightly away from the edge on the right side */
.menu-toggle {
  right: 1.75rem;            /* increase to move it further left, decrease to move it right */
}

/* Quick chat container (open state) */
.quick-chat {
  position: fixed;
  right: 1.5rem;          /* keep it hugged to the right edge */
  bottom: 1.5rem;
  width: 420px;           /* was smaller – bump this up */
  height: 520px;          /* make it taller */
  max-width: 90vw;
  max-height: 90vh;

  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  font-size: 0.95rem;     /* everything inside scales */
}

/* If you have a “minimized” version */
.quick-chat--minimized {
  width: 420px;           /* match width so it feels consistent */
  height: 52px;
}

/* Make sure internal sections flex correctly so they fill the new size */
.quick-chat-header {
  flex: 0 0 auto;
}

.quick-chat-messages {
  flex: 1 1 auto;
  overflow-y: auto;
}

.quick-chat-input {
  flex: 0 0 auto;
}



/* Global quick brand pill (top-left RedX logo that returns to profile) */
.quick-brand-pill {
  position: fixed;
  top: 1rem;
  left: 1.5rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 20, 55, 0.32),
    rgba(5, 5, 9, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
  text-decoration: none;
  cursor: pointer;
}

.quick-brand-pill:hover {
  box-shadow: 0 0 32px rgba(255, 20, 55, 0.5);
}

.quick-brand-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.quick-brand-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-brand-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-main);
}

/* -----------------------------
   QUICK CHAT WIDGET (GLOBAL)
   ----------------------------- */

.quick-chat-root {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1200;
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* collapsed vs expanded state */
.quick-chat-root.collapsed .quick-chat-card {
  display: none;
}

.quick-chat-root.expanded .quick-chat-card {
  display: flex;
}

/* header bar (always visible) */
.quick-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff1437, #9b2cff);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.quick-chat-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-chat-title {
  font-weight: 600;
}

.quick-chat-header-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* unread badge on collapsed bar */
.chat-unread-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff5263;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.quick-chat-root.has-unread .chat-unread-badge {
  display: inline-flex;
}

.chat-toggle-btn {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: none;
  outline: none;
  background: rgba(5, 5, 11, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* expanded card (bigger now) */
.quick-chat-card {
  margin-top: 10px;
  width: 440px;           /* wider */
  max-height: 520px;      /* taller */
  background: rgba(5, 5, 12, 0.98);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* body layout: friends left, thread right */
.quick-chat-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  flex: 1 1 auto;
  min-height: 280px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* friends column */
.chat-friends-column {
  background: radial-gradient(circle at top, #120714 0, #06040a 50%, #040308 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 6px;
  overflow-y: auto;
}

.chat-friends-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-friend-btn {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #f7f7f7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
}

.chat-friend-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.chat-friend-btn.active {
  background: rgba(255, 20, 55, 0.26);
}

.chat-friend-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 6px rgba(255, 20, 55, 0.6);
}

.chat-friend-name {
  font-weight: 600;
}

/* thread column */
.chat-thread-column {
  display: flex;
  flex-direction: column;
  background: #050509;
}

.chat-thread-header {
  padding: 8px 12px;
  font-size: 13px;
  color: #a4a4b5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-thread-messages {
  flex: 1 1 auto;
  padding: 10px 12px;
  overflow-y: auto;
  font-size: 13px;
}

/* simple message bubbles */
.chat-message {
  margin-bottom: 6px;
  max-width: 85%;
  padding: 6px 9px;
  border-radius: 11px;
  line-height: 1.25;
}

.chat-message.me {
  margin-left: auto;
  background: rgba(255, 20, 55, 0.28);
  color: #f7f7f7;
}

.chat-message.them {
  background: rgba(255, 255, 255, 0.05);
  color: #f7f7f7;
}

/* footer (input + send) */
.quick-chat-footer {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  gap: 8px;
  background: #050509;
}

.chat-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #070711;
  padding: 8px 12px;
  font-size: 13px;
  color: #f7f7f7;
  outline: none;
}

.chat-input::placeholder {
  color: #5d5d70;
}

.chat-send-btn {
  border-radius: 999px;
  border: none;
  background: #ff1437;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 20, 55, 0.55);
}

.chat-send-btn:hover {
  background: #ff3150;
}


