/* Friendly & Professional Light Theme System */
:root {
  --bg-primary: #f3f6fa;
  --bg-sidebar: rgba(255, 255, 255, 0.75);
  --bg-chat: rgba(247, 249, 252, 0.5);
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-border: rgba(99, 102, 241, 0.08);
  
  --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #0d9488 100%);
  --secondary-gradient: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  --accent-glow: rgba(79, 70, 229, 0.05);
  
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  --border-radius-lg: 20px;
  --border-radius-md: 14px;
  --border-radius-sm: 10px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-width: 320px;
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animated Warm Mesh Background for Summer Vibe */
.mesh-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: 
    radial-gradient(at 10% 10%, rgba(56, 189, 248, 0.12) 0px, transparent 40%),
    radial-gradient(at 90% 10%, rgba(251, 146, 60, 0.08) 0px, transparent 40%),
    radial-gradient(at 50% 90%, rgba(52, 211, 153, 0.1) 0px, transparent 55%);
  background-size: 100% 100%;
  animation: meshFlow 25s ease infinite alternate;
}

@keyframes meshFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 5% 5%; }
}

/* App Container - Rounded Light Panel */
.app-container {
  display: flex;
  width: 95vw;
  height: 90vh;
  max-width: 1400px;
  max-height: 850px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(31, 38, 135, 0.05);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

/* Sidebar - Friendly clean layout */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  border-right: 1px solid rgba(99, 102, 241, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  z-index: 100;
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.06);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #1e1b4b; /* Deep Indigo */
}

.logo-text span {
  font-size: 0.78rem;
  color: #0d9488; /* Teal */
  font-weight: 600;
  display: block;
  margin-top: 1px;
}

.sidebar-scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Custom Scrollbar - Grey soft */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.15);
}

.info-section h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 14px;
  font-weight: 700;
}

/* Feature grid info cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.04);
}

.feature-card .icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 6px;
}

.feature-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
}

.feature-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Category lists */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.category-btn:hover {
  background: rgba(79, 70, 229, 0.04);
  border-color: rgba(79, 70, 229, 0.15);
  transform: translateX(4px);
}

.category-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.category-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-icon {
  font-size: 1.05rem;
}

.category-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.category-btn.active .category-name {
  color: white;
}

.category-count {
  font-size: 0.72rem;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

.category-btn.active .category-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Skeleton animation for loading states */
.category-skeleton {
  height: 42px;
  background: linear-gradient(90deg, var(--card-bg) 25%, #e2e8f0 50%, var(--card-bg) 75%);
  background-size: 200% 100%;
  animation: loadingSkeleton 1.5s infinite;
  border-radius: var(--border-radius-md);
}

@keyframes loadingSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Milestones and schedules */
.stats-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(79, 70, 229, 0.02) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 16px;
}

.stats-box h3 {
  font-size: 0.85rem;
  color: #1e1b4b;
  margin-bottom: 12px;
  font-weight: 700;
}

.milestones-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.milestones-list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  position: relative;
  padding-left: 14px;
}

.milestones-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: #0d9488;
  border-radius: 50%;
}

.sidebar-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(99, 102, 241, 0.06);
  text-align: center;
}

.sidebar-footer p {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Chat Section */
.chat-main {
  flex: 1;
  min-width: 0; /* Flexbox overflow fix */
  display: flex;
  flex-direction: column;
  background: var(--bg-chat);
  position: relative;
}

.chat-header {
  height: 74px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.06);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.toggle-sidebar-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px;
  margin-right: 12px;
}

.toggle-sidebar-btn svg {
  width: 20px;
  height: 20px;
}

.chat-partner-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-container {
  position: relative;
}

.avatar {
  width: 42px;
  height: 42px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.15);
}

.status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background-color: #10b981;
  border: 2px solid white;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.chat-partner-info h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.chat-partner-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.icon-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.icon-btn:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.15);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

/* Chat viewport area */
.chat-history-viewport {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Message items */
.message-row {
  display: flex;
  width: 100%;
  animation: popMessage 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popMessage {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.user-msg-row {
  justify-content: flex-end;
}

.bot-msg-row {
  justify-content: flex-start;
}

.system-msg-row {
  justify-content: center;
  margin-top: 10px;
}

.message-bubble {
  max-width: 75%;
  padding: 14px 18px;
  border-radius: var(--border-radius-lg);
  font-size: 0.9rem;
  line-height: 1.55;
  box-shadow: 0 2px 8px rgba(0,0,0,0.015);
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.user-bubble {
  background: var(--primary-gradient);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}

.bot-bubble {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.system-bubble {
  background: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.12);
  text-align: center;
  color: var(--text-main);
  max-width: 90%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bot-badge {
  font-size: 0.68rem;
  background: var(--secondary-gradient);
  color: white;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* Suggestion chip blocks inside chat viewport */
.suggestions-wrapper {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.suggestions-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.suggestions-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion-chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #4f46e5;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.suggestion-chip:hover {
  background: rgba(79, 70, 229, 0.06);
  border-color: rgba(79, 70, 229, 0.25);
  color: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.04);
}

/* Chat input area footer style */
.chat-input-footer {
  padding: 12px 24px 24px;
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-suggestions-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px 4px;
  scrollbar-width: none; /* Firefox */
}

.input-suggestions-bar::-webkit-scrollbar {
  display: none; /* Chrome */
}

.input-suggestions-bar .suggestion-chip {
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.input-suggestions-bar .suggestion-chip:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.15);
}

.chat-input-form {
  position: relative;
  width: 100%;
}

.input-glow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 5px 6px 5px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.input-glow-wrapper:focus-within {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

#chat-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 10px 0;
}

#chat-input::placeholder {
  color: var(--text-dim);
}

.send-btn {
  background: var(--primary-gradient);
  border: none;
  outline: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}

.send-btn svg {
  width: 16px;
  height: 16px;
  transform: translate(-1px, 1px);
}

/* Match highlight formatting in chat answers */
.match-highlight {
  color: #4f46e5; /* Accent Indigo */
  font-weight: 700; /* Bold */
  font-style: italic; /* Italic */
  background-color: rgba(79, 70, 229, 0.08); /* Soft background glow */
  padding: 1px 5px;
  margin: 0 1px;
  border-radius: 4px;
  border-bottom: 1px dashed rgba(79, 70, 229, 0.4);
}

/* Category tag inside replies */
.reply-btn-tag {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #4f46e5;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0 3px;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition-smooth);
}

.reply-btn-tag:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.2);
}

/* Typing bounce indicator style */
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-dim);
  border-radius: 50%;
  opacity: 0.5;
  animation: dotBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); opacity: 1; }
}

/* Responsive configurations */
@media (max-width: 900px) {
  .app-container {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    max-width: none;
    max-height: none;
    border: none;
  }
  
  .sidebar {
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 290px;
    background: #ffffff;
    box-shadow: 10px 0 30px rgba(0,0,0,0.05);
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .toggle-sidebar-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .message-bubble {
    max-width: 85%;
    padding: 10px 14px;
  }
  
  .chat-header {
    padding: 0 16px;
  }
  
  .chat-history-viewport {
    padding: 16px;
  }
  
  .chat-input-footer {
    padding: 12px 16px 16px;
  }
}

/* Premium Language Selector Switch */
.lang-switch-wrapper {
  display: flex;
  background: rgba(226, 232, 240, 0.7);
  border-radius: 20px;
  padding: 3px;
  border: 1px solid rgba(99, 102, 241, 0.08);
  margin-right: 12px;
}

.lang-switch-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  outline: none;
}

.lang-switch-btn:hover {
  color: #4f46e5;
}

.lang-switch-btn.active {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.2);
}

/* Administrative Leads Button and Modal Styles */
.sidebar-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(99, 102, 241, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.admin-btn {
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.12);
  color: var(--text-dim);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  outline: none;
}

.admin-btn:hover {
  background: rgba(99, 102, 241, 0.12);
  color: var(--text-main);
  border-color: rgba(99, 102, 241, 0.24);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.25s ease-out;
}

/* Modal Content Box */
.modal-content {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dim);
  transition: var(--transition-smooth);
}

.close-btn:hover {
  color: #ef4444;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8fafc;
}

/* Actions bar inside Modal */
.modal-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

#leads-search {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--card-border);
  font-size: 0.85rem;
  background: #ffffff;
  outline: none;
  transition: var(--transition-smooth);
}

#leads-search:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.modal-btn-group {
  display: flex;
  gap: 8px;
}

.action-btn {
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
  outline: none;
}

.export-btn {
  background: #4f46e5;
  color: white;
}

.export-btn:hover {
  background: #4338ca;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.delete-btn {
  background: #ef4444;
  color: white;
}

.delete-btn:hover {
  background: #dc2626;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

/* Leads Table style */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  max-height: 400px;
  background: #ffffff;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: left;
}

.leads-table th {
  background: rgba(99, 102, 241, 0.04);
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--card-border);
}

.leads-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.02);
  color: var(--text-muted);
}

.leads-table tbody tr:hover {
  background: rgba(99, 102, 241, 0.02);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

