/* Minimalist Apple & Notion Inspired Design System for Wonderwall */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --bg-primary: #fbfbfa; /* Eggshell white */
  --bg-secondary: #ffffff; /* Pure white for cards */
  --bg-card: #ffffff;
  --bg-interactive: #f4f4f5; /* Light grey */
  --text-primary: #111111; /* Crisp charcoal/black */
  --text-secondary: #666666; /* Soft grey */
  --text-tertiary: #888888;
  --border-color: #e5e5e7; /* Ultra light Apple-like grey border */
  --accent-color: #000000; /* Minimalist black accent */
  --accent-blue: #0066cc; /* Apple Link Blue */
  --accent-emerald: #16a34a; /* Notion Green */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Background Gradients - Removed Orbs */
.bg-glow-container {
  display: none;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(251, 251, 250, 0.8);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo-icon {
  background: var(--text-primary);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 4px;
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: var(--bg-primary);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-cta {
  background: var(--accent-color);
  color: #ffffff !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease !important;
}

.btn-cta:hover {
  background: #333333;
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.text-center {
  text-align: center;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding-top: 2rem;
}

.tagline {
  display: inline-block;
  background: var(--bg-interactive);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero h1 span {
  color: var(--text-secondary);
  font-weight: 400;
}

.hero p {
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-secondary {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  background: var(--bg-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-interactive);
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #333333;
}

/* Features Grid */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 3.5rem auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.25rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: #c5c5c7;
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  background: var(--bg-interactive);
  color: var(--text-primary);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* Calculator Style */
.calculator-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .calculator-container {
    grid-template-columns: 1fr;
    padding: 1.75rem;
    gap: 2rem;
  }
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
}

.calc-val {
  color: var(--text-primary);
  font-weight: 700;
}

/* Custom Slider */
.slider-wrapper {
  position: relative;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border-color);
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-primary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.select-llm {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.select-llm:focus {
  border-color: #888888;
}

.calc-results {
  background: var(--bg-interactive);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.result-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.result-val {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: var(--text-primary);
}

.savings-val {
  color: var(--accent-emerald) !important;
}

.savings-percentage {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Technology Pipeline Flowchart */
.flowchart-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .flowchart-container {
    flex-direction: column;
    gap: 2rem;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}

.flow-node {
  background: var(--bg-interactive);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  position: relative;
}

.node-wonderwall {
  border-color: #888888;
  background: var(--bg-secondary);
}

.node-llm {
  border-color: var(--border-color);
}

.flow-node h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.flow-node p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.node-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.flow-arrow {
  color: var(--text-secondary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Code Sandbox */
.sandbox-container {
  max-width: 750px;
  margin: 0 auto;
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.sandbox-header {
  background: #f4f4f5;
  border-bottom: 1px solid var(--border-color);
  padding: 0.6rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #d4d4d8;
}

.sandbox-tabs {
  display: flex;
  gap: 0.35rem;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
}

.tab-active {
  color: var(--text-primary) !important;
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-color);
  font-weight: 600;
}

.sandbox-content {
  padding: 1.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size: 0.85rem;
  line-height: 1.55;
  overflow-x: auto;
  color: #24292f; /* Github light style code text */
  background: #fafafa;
}

/* FAQ Accordion */
.faq-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.15s ease;
}

.faq-item:hover {
  border-color: #c5c5c7;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
}

.faq-question:hover {
  color: var(--text-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0, 1, 0, 1), padding 0.25s ease;
  padding: 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-top: 1px solid transparent;
}

.faq-active .faq-answer {
  max-height: 800px;
  padding: 0 1.25rem 1.25rem 1.25rem;
  border-top-color: var(--border-color);
  transition: max-height 0.25s cubic-bezier(1, 0, 1, 0), padding 0.25s ease;
}

.faq-icon {
  transition: transform 0.25s ease;
  color: var(--text-secondary);
}

.faq-active .faq-icon {
  transform: rotate(45deg);
  color: var(--text-primary);
}

/* Contact Lead Form */
.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.form-input {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s ease;
}

.form-input:focus {
  border-color: #888888;
}

.btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s ease;
  margin-top: 0.75rem;
}

.btn-submit:hover {
  background: #333333;
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.form-success.show {
  opacity: 1;
  pointer-events: auto;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #f0fdf4;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 3.5rem 2rem 2rem 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.footer-links-grid {
  display: flex;
  gap: 4rem;
}

@media (max-width: 600px) {
  .footer-links-grid {
    gap: 1.5rem;
    flex-direction: column;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Public Chat Widget Styles */
.chat-wrapper {
  max-width: 550px;
  margin: 0 auto;
}

.chat-form-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.chat-widget-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 480px;
  overflow: hidden;
}

.chat-widget-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--text-primary);
  position: relative;
}

.chat-avatar::after {
  content: "W";
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chat-reset-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

.chat-reset-btn:hover {
  color: var(--text-primary);
}

.chat-messages-container {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-bubble-row {
  display: flex;
  width: 100%;
}

.chat-row-customer {
  justify-content: flex-end;
}

.chat-row-admin {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: 75%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.chat-bubble-customer {
  background: var(--text-primary);
  color: #ffffff;
  border-bottom-right-radius: 2px;
}

.chat-bubble-admin {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: 2px;
}

.chat-bubble p {
  word-break: break-word;
}

.chat-time {
  display: block;
  font-size: 0.65rem;
  margin-top: 0.25rem;
  text-align: right;
  opacity: 0.6;
}

.chat-bubble-customer .chat-time {
  color: #e5e5e7;
}

.chat-bubble-admin .chat-time {
  color: var(--text-secondary);
}

.chat-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.chat-input-form {
  display: flex;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  gap: 0.75rem;
}

.chat-input-field {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}

.chat-input-field:focus {
  border-color: #888888;
}

.chat-send-btn {
  background: var(--text-primary);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

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

/* Admin Dashboard Styles */
.admin-dashboard-container {
  display: flex;
  flex: 1;
  height: 100%;
  background: #f4f4f5;
  overflow: hidden;
}

.admin-sidebar {
  width: 320px;
  background: #ffffff;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.admin-sidebar-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-sidebar-header h3 {
  font-size: 1.2rem;
  margin: 0;
}

.active-badge {
  background: #f4f4f5;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.admin-conversation-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-empty-list {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.admin-conv-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  outline: none;
}

.admin-conv-item:hover {
  background-color: #fafafa;
}

.admin-conv-active {
  background-color: #f4f4f5 !important;
}

.admin-conv-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.admin-conv-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.admin-conv-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.admin-conv-details {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fbfbfa;
  height: 100%;
}

.admin-chat-header {
  padding: 1.25rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.admin-chat-header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.admin-chat-header p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

.user-id-badge {
  font-family: monospace;
  background: #f4f4f5;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.admin-messages-container {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-chat-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.admin-chat-placeholder h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.admin-chat-placeholder p {
  font-size: 0.9rem;
  max-width: 320px;
}
