@charset "UTF-8";
#livechat-client[data-v-d4cd62ba] {
  width: 100%;
  height: 100vh;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
}

/* Remove outlines globally */
.chat-view *:focus-visible,
.chat-view button:focus,
.chat-view button:active,
.chat-view button:hover,
.chat-view input:focus,
.chat-view input:active,
.chat-view input:active,
.chat-view input:hover,
.chat-view textarea:focus,
.chat-view textarea:active,
.chat-view textarea:hover,
.chat-view select:focus,
.chat-view select:active,
.chat-view select:hover,
.chat-view a:focus,
.chat-view a:active,
.chat-view a:hover
.chat-view textarea:focus,
 .chat-view  textarea:active,
 .chat-view textarea:hover,
 .chat-view select:focus,
 .chat-view   select:active,
 .chat-view select:hover,
 .chat-view a:focus,
 .chat-view a:active,
 .chat-view a:hover {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}
/* Chat Theme Colors */
:root {
  --livechat-primary-color: #3b82f6;
  --livechat-primary-hover: #2563eb;
  --livechat-secondary-color: #64748b;
  --livechat-success-color: #10b981;
  --livechat-danger-color: #ef4444;
  --livechat-warning-color: #f59e0b;
  --livechat-background-color: #ffffff;
  --livechat-surface-color: #f8fafc;
  --livechat-border-color: #e2e8f0;
  --livechat-text-color: #1e293b;
  --livechat-text-muted: #64748b;
  --livechat-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --livechat-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --livechat-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Common Utility Classes */
.chat-view .flex, .chat-page .flex, .popup-widget .flex {
  display: flex;
}
.chat-view .flex-col {
  flex-direction: column;
}
.chat-view .items-center, .chat-page .items-center, .popup-widget .items-center {
  align-items: center;
}
.chat-view .justify-center, .chat-page .justify-center, .popup-widget .justify-center {
  justify-content: center;
}
.chat-view .justify-between, .chat-page .justify-between, .popup-widget .justify-between {
  justify-content: space-between;
}
.chat-view .space-x-2 > * + *, .chat-page .space-x-2 > * + *, .popup-widget .space-x-2 > * + * {
  margin-left: 0.5rem;
}
.chat-view .space-y-2 > * + *, .chat-page .space-y-2 > * + *, .popup-widget .space-y-2 > * + * {
  margin-top: 0.5rem;
}
.chat-view .rounded, .chat-page .rounded, .popup-widget .rounded {
  border-radius: 0.375rem;
}
.chat-view .rounded-lg, .chat-page .rounded-lg, .popup-widget .rounded-lg {
  border-radius: 0.5rem;
}
.chat-view .rounded-xl, .chat-page .rounded-xl, .popup-widget .rounded-xl {
  border-radius: 0.75rem;
}
.chat-view .rounded-full, .chat-page .rounded-full, .popup-widget .rounded-full {
  border-radius: 9999px;
}
.chat-view .shadow-sm, .chat-page .shadow-sm, .popup-widget .shadow-sm {
  box-shadow: var(--livechat-shadow-sm);
}
.chat-view .shadow-md, .chat-page .shadow-md, .popup-widget .shadow-md {
  box-shadow: var(--livechat-shadow-md);
}
.chat-view .shadow-lg, .chat-page .shadow-lg, .popup-widget .shadow-lg {
  box-shadow: var(--livechat-shadow-lg);
}
/* Text Utilities */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.chat-view .text-base, .chat-page .text-base, .popup-widget .text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.chat-view .text-lg, .chat-page .text-lg, .popup-widget .text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.chat-view .text-xl, .chat-page .text-xl, .popup-widget .text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.chat-view .font-medium, .chat-page .font-medium, .popup-widget .font-medium {
  font-weight: 500;
}
.chat-view .font-semibold, .chat-page .font-semibold, .popup-widget .font-semibold {
  font-weight: 600;
}
.chat-view .font-bold, .chat-page .font-bold, .popup-widget .font-bold {
  font-weight: 700;
}
/* Common Components */
.chat-view .btn, .chat-page .btn, .popup-widget .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.livechat-btn-primary {
  background: var(--livechat-primary-color);
  color: white;
}
.livechat-btn-primary:hover {
  background: var(--livechat-primary-hover);
}
.livechat-btn-secondary {
  background: var(--livechat-surface-color);
  color: var(--livechat-text-color);
  border: 1px solid var(--livechat-border-color);
}
.livechat-btn-secondary:hover {
  background: #f1f5f9;
}
/* Input Styles */
.chat-view .input, .chat-page .input, .popup-widget .input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--livechat-border-color);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: white;
}
.chat-view .input:focus, .chat-page .input:focus, .popup-widget .input:focus {
  border-color: var(--livechat-primary-color);
}
/* Animation */
.chat-view .fade-enter-active, .chat-page .fade-enter-active, .popup-widget .fade-enter-active,
.chat-view .fade-leave-active, .chat-page .fade-leave-active, .popup-widget .fade-leave-active {
  transition: opacity 0.3s ease;
}
.chat-view .fade-enter-from, .chat-page .fade-enter-from, .popup-widget .fade-enter-from,
.chat-view .fade-leave-to, .chat-page .fade-leave-to, .popup-widget .fade-leave-to,
.chat-view .fade-leave-to, .chat-page .fade-leave-to, .popup-widget .fade-leave-to {
  opacity: 0;
}
.chat-view .slide-up-enter-active, .chat-page .slide-up-enter-active, .popup-widget .slide-up-enter-active,
.chat-view .slide-up-leave-active, .chat-page .slide-up-leave-active, .popup-widget .slide-up-leave-active,
.chat-view .slide-up-leave-active, .chat-page .slide-up-leave-active, .popup-widget .slide-up-leave-active {
  transition: all 0.3s ease;
}
.chat-view .slide-up-enter-from, .chat-page .slide-up-enter-from, .popup-widget .slide-up-enter-from,
.chat-view .slide-up-leave-to, .chat-page .slide-up-leave-to, .popup-widget .slide-up-leave-to,
.chat-view .slide-up-leave-to, .chat-page .slide-up-leave-to, .popup-widget .slide-up-leave-to {
  transform: translateY(100%);
  opacity: 0;
}
/* Responsive */
@media (max-width: 768px) {
.chat-view .btn, .chat-page .btn, .popup-widget .btn {
    padding: 0.625rem 1.25rem;
}
.chat-view .text-base, .chat-page .text-base, .popup-widget .text-base {
    font-size: 0.875rem;
}
.chat-view .text-lg, .chat-page .text-lg, .popup-widget .text-lg {
    font-size: 1rem;
}
}:root {
  --livechat-primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  --livechat-primary-color: #667eea !important;
  --livechat-primary-hover: #5a67d8 !important;
  --livechat-secondary-color: #f8fafc !important;
  --livechat-accent-color: #10b981 !important;
  --livechat-text-color: #1f2937 !important;
  --livechat-text-muted: #6b7280 !important;
  --livechat-text-light: #9ca3af !important;
  --livechat-border-color: #e5e7eb !important;
  --livechat-border-light: #f3f4f6 !important;
  --livechat-background-color: #ffffff !important;
  --livechat-surface-color: #f8fafc !important;
  --livechat-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  --livechat-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  --livechat-shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  --livechat-shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  --livechat-shadow-2xl:
    0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
/* CSS Variables */
#livechat-client[data-v-2b48777a] {
  /* Loading Screen Styles */
  /* Welcome Screen Styles */
  /* Form Styles */
  /* Edited message indicator */
  /* Chat Interface Styles - Optimized for ChatGPT-like layout */
  /* Header - Fixed at top like ChatGPT */
  /* Messages Container - Scrollable area like ChatGPT */
  /* Smooth scroll behavior like ChatGPT */
  /* Custom scrollbar */
  /* Message Items */
  /* Typing Indicator */
  /* File Preview Area - Fixed section like input */
  /* Input Area - Fixed at bottom like ChatGPT */
  /* .input-field:focus-within {
    border-color: var(--livechat-primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  } */
  /* Emoji Picker */
  /* Message Media Styles */
  /* Mixed Message Styles */
  /* Media message bubble adjustments */
  /* Powered by */
  /* Compact mode adjustments */
  /* Responsive Design */
  /* Minimized Chat Styles */
  /* Minimized responsive */
  /* Toast Notification Styles */
  /* Mobile toast adjustments */
  /* Media Preview Modal Styles */
  /* Clickable media styles */
  /* Mobile responsive adjustments */
}
#livechat-client .chat-view[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  border-radius: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
#livechat-client .chat-view-compact[data-v-2b48777a] {
  border-radius: none;
  overflow: hidden;
  box-shadow: var(--livechat-shadow-xl);
}
#livechat-client .loading-screen[data-v-2b48777a] {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
#livechat-client .loading-container[data-v-2b48777a] {
  text-align: center;
  background: transparent;
  /* backdrop-filter: blur(10px); */
  /* border-radius: 1.5rem; */
  /* padding: 2.5rem; */
  max-width: 320px;
  width: 100%;
  /* box-shadow: var(--livechat-shadow-xl); */
}
#livechat-client .loading-spinner[data-v-2b48777a] {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
#livechat-client .loading-spinner svg[data-v-2b48777a] {
  color: var(--livechat-primary-color);
}
#livechat-client .loading-text h3[data-v-2b48777a] {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--livechat-text-color);
  margin-bottom: 0.75rem;
}
#livechat-client .loading-text p[data-v-2b48777a] {
  color: var(--livechat-text-muted);
  font-size: 1rem;
  margin: 0;
}
#livechat-client .welcome-screen[data-v-2b48777a] {
  height: 100%;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 480px !important;
  margin: 0 auto !important;
}
#livechat-client .welcome-container[data-v-2b48777a] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--livechat-shadow-xl);
  animation: slideInUp-2b48777a 0.6s ease-out;
}
@keyframes slideInUp-2b48777a {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
#livechat-client .welcome-header[data-v-2b48777a] {
  text-align: center;
  margin-bottom: 1.5rem;
}
#livechat-client .welcome-logo[data-v-2b48777a] {
  margin-bottom: 1.15rem;
}
#livechat-client .welcome-logo img[data-v-2b48777a] {
  width: 80px;
  height: 80px;
  border-radius: 80px;
}
#livechat-client .welcome-title[data-v-2b48777a] {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--livechat-text-color);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
#livechat-client .welcome-subtitle[data-v-2b48777a] {
  color: var(--livechat-text-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
#livechat-client .user-info-form[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#livechat-client .form-group[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
}
#livechat-client .form-group label[data-v-2b48777a] {
  font-weight: 600;
  color: var(--livechat-text-color);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
#livechat-client .form-input[data-v-2b48777a],
#livechat-client .form-textarea[data-v-2b48777a] {
  padding: 0.875rem 1rem;
  border: 2px solid var(--livechat-border-color);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
#livechat-client .form-input[data-v-2b48777a]:focus,
#livechat-client .form-textarea[data-v-2b48777a]:focus {
  border-color: var(--livechat-primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
#livechat-client .form-input.error[data-v-2b48777a],
#livechat-client .form-textarea.error[data-v-2b48777a] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
#livechat-client .form-textarea[data-v-2b48777a] {
  resize: vertical;
  min-height: 80px;
}
#livechat-client .error-text[data-v-2b48777a] {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
#livechat-client .error-message[data-v-2b48777a] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
#livechat-client .connection-status[data-v-2b48777a] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 0.75rem;
  color: #0369a1;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
#livechat-client .start-chat-btn[data-v-2b48777a] {
  background: var(--global-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  box-shadow: var(--livechat-shadow-md);
}
#livechat-client .start-chat-btn[data-v-2b48777a]:hover:not(:disabled) {
  /* transform: translateY(-2px); */
  box-shadow: var(--livechat-shadow-lg);
}
#livechat-client .start-chat-btn[data-v-2b48777a]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
#livechat-client .animate-spin[data-v-2b48777a] {
  animation: spin-2b48777a 1s linear infinite;
}
#livechat-client .edited-indicator[data-v-2b48777a] {
  font-size: 11px;
  opacity: 0.6;
  font-style: italic;
  margin-left: 8px;
  color: #666;
}
#livechat-client .message.user .edited-indicator[data-v-2b48777a] {
  color: rgba(255, 255, 255, 0.7);
}
@keyframes spin-2b48777a {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
#livechat-client .chat-interface[data-v-2b48777a] {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: inherit;
  overflow: hidden;
  min-height: 0; /* Critical for proper flex overflow behavior */
}
#livechat-client .chat-header[data-v-2b48777a] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--global-color);
  color: white;
  box-shadow: var(--livechat-shadow-md);
  position: sticky; /* Keep header visible when scrolling */
  top: 0;
  z-index: 10;
  flex-shrink: 0; /* Prevent header from shrinking */
}
#livechat-client .chat-header[data-v-2b48777a]::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
#livechat-client .chat-header-left[data-v-2b48777a] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#livechat-client .company-avatar[data-v-2b48777a] {
  position: relative;
}
#livechat-client .company-avatar img[data-v-2b48777a] {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  /* border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--livechat-shadow-sm); */
}
#livechat-client .status-indicator[data-v-2b48777a] {
  position: absolute;
  bottom: 3px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid white;
  transition: background-color 0.3s ease;
}
#livechat-client .status-indicator.online[data-v-2b48777a] {
  background: var(--livechat-accent-color);
}
#livechat-client .company-info[data-v-2b48777a] {
  flex: 1;
}
#livechat-client .company-name[data-v-2b48777a] {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: white;
}
#livechat-client .company-status[data-v-2b48777a] {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3px;
}
#livechat-client .chat-header-right[data-v-2b48777a] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#livechat-client .user-info-badge[data-v-2b48777a] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#livechat-client .user-avatar[data-v-2b48777a] {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}
#livechat-client .user-name[data-v-2b48777a] {
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#livechat-client .btn-icon[data-v-2b48777a] {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#livechat-client .btn-icon[data-v-2b48777a]:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
#livechat-client .messages-container[data-v-2b48777a] {
  flex: 1; /* Take all available space */
  overflow-y: auto; /* Allow vertical scrolling */
  min-height: 0; /* Critical: allows flex item to shrink below content size */
  padding: 1rem;
  background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
  position: relative;
}
#livechat-client .messages-container[data-v-2b48777a]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to bottom, rgb(248, 250, 252), rgba(248, 250, 252, 0));
  pointer-events: none;
}
#livechat-client .messages-container[data-v-2b48777a] {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
#livechat-client .messages-container[data-v-2b48777a]::-webkit-scrollbar {
  width: 6px;
}
#livechat-client .messages-container[data-v-2b48777a]::-webkit-scrollbar-track {
  background: transparent;
}
#livechat-client .messages-container[data-v-2b48777a]::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.3);
  border-radius: 3px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
#livechat-client .messages-container[data-v-2b48777a]::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.5);
}
#livechat-client .welcome-message[data-v-2b48777a] {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: var(--livechat-shadow-md);
  border: 1px solid rgba(102, 126, 234, 0.1);
  animation: fadeInScale-2b48777a 0.5s ease-out;
  margin-bottom: 1rem;
}
@keyframes fadeInScale-2b48777a {
from {
    opacity: 0;
    transform: scale(0.95);
}
to {
    opacity: 1;
    transform: scale(1);
}
}
#livechat-client .welcome-avatar img[data-v-2b48777a] {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  box-shadow: var(--livechat-shadow-sm);
}
#livechat-client .welcome-content h4[data-v-2b48777a] {
  margin: 0 0 0.25rem 0;
  color: var(--livechat-text-color);
  font-size: 1.15rem;
  font-weight: 600;
}
#livechat-client .welcome-content p[data-v-2b48777a] {
  margin: 0;
  color: var(--livechat-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
#livechat-client .message-item[data-v-2b48777a] {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin-bottom: 0 !important;
  animation: messageSlideIn-2b48777a 0.3s ease-out;
  margin-bottom: 5px;
}
@keyframes messageSlideIn-2b48777a {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
#livechat-client .message-item.message-sent[data-v-2b48777a] {
  flex-direction: row-reverse;
}
#livechat-client .message-avatar img[data-v-2b48777a] {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: var(--livechat-shadow-sm);
}
#livechat-client .message-content[data-v-2b48777a] {
  max-width: 85%;
  display: flex;
  flex-direction: column;
}
#livechat-client .message-sent .message-content[data-v-2b48777a] {
  align-items: flex-end;
}
#livechat-client .message-bubble[data-v-2b48777a] {
  padding: 0.65rem 0.75rem;
  border-radius: 1.25rem;
  margin-bottom: 0.15rem;
  word-wrap: break-word;
  position: relative;
  box-shadow: var(--livechat-shadow-sm);
  font-size: 0.95rem;
  line-height: 1.4;
  align-items: center;
}
#livechat-client .message-received .message-bubble[data-v-2b48777a] {
  background: white;
  color: var(--livechat-text-color);
  border-bottom-left-radius: 0.375rem;
  /* border: 1px solid var(--livechat-border-light); */
  border: none !important;
}
#livechat-client .message-sent .message-bubble[data-v-2b48777a] {
  background: var(--global-color);
  color: white;
  border-bottom-right-radius: 0.375rem;
  box-shadow: var(--livechat-shadow-md);
}
#livechat-client .message-time[data-v-2b48777a] {
  font-size: 0.65rem;
  color: var(--livechat-text-light);
  padding: 0 0.5rem;
  font-weight: 500;
  margin-bottom: 5px;
}
#livechat-client .typing-indicator[data-v-2b48777a] {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
#livechat-client .typing-dots[data-v-2b48777a] {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border-bottom-left-radius: 0.25rem;
  display: flex;
  gap: 0.25rem;
}
#livechat-client .typing-dots span[data-v-2b48777a] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--livechat-text-muted);
  animation: typing-2b48777a 1.4s infinite ease-in-out;
}
#livechat-client .typing-dots span[data-v-2b48777a]:nth-child(2) {
  animation-delay: 0.2s;
}
#livechat-client .typing-dots span[data-v-2b48777a]:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing-2b48777a {
0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
}
30% {
    transform: translateY(-10px);
    opacity: 1;
}
}
#livechat-client .file-preview-area[data-v-2b48777a] {
  background: white;
  border-top: 1px solid var(--livechat-border-light);
  padding: 1rem 1.5rem;
  flex-shrink: 0; /* Keep file preview section fixed */
}
#livechat-client .file-preview-header[data-v-2b48777a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--livechat-text-muted);
}
#livechat-client .btn-clear-files[data-v-2b48777a] {
  background: none;
  border: none;
  color: var(--livechat-text-light);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
#livechat-client .btn-clear-files[data-v-2b48777a]:hover {
  color: #ef4444;
  background: #fef2f2;
}
#livechat-client .file-preview-list[data-v-2b48777a] {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
#livechat-client .file-preview-item[data-v-2b48777a] {
  position: relative;
  background: var(--livechat-surface-color);
  border: 2px solid var(--livechat-border-light);
  border-radius: 0.75rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 120px;
  transition: all 0.3s ease;
}
#livechat-client .file-preview-item.uploading[data-v-2b48777a] {
  border-color: var(--livechat-primary-color);
  background: rgba(102, 126, 234, 0.05);
}
#livechat-client .file-preview-image[data-v-2b48777a],
#livechat-client .file-preview-video[data-v-2b48777a] {
  position: relative;
  width: 100px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--livechat-border-light);
}
#livechat-client .file-preview-image img[data-v-2b48777a] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#livechat-client .file-preview-video video[data-v-2b48777a] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#livechat-client .video-overlay[data-v-2b48777a] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#livechat-client .upload-overlay[data-v-2b48777a] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
#livechat-client .upload-progress[data-v-2b48777a] {
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
#livechat-client .progress-bar[data-v-2b48777a] {
  height: 100%;
  background: var(--livechat-accent-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}
#livechat-client .upload-percent[data-v-2b48777a] {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}
#livechat-client .file-info[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
#livechat-client .file-name[data-v-2b48777a] {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--livechat-text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#livechat-client .file-size[data-v-2b48777a] {
  font-size: 0.625rem;
  color: var(--livechat-text-light);
}
#livechat-client .btn-remove-file[data-v-2b48777a] {
  position: absolute;
  top: -0.375rem;
  right: -0.375rem;
  background: #ef4444;
  border: none;
  color: white;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--livechat-shadow-sm);
  transition: all 0.2s ease;
}
#livechat-client .btn-remove-file[data-v-2b48777a]:hover:not(:disabled) {
  background: #dc2626;
  transform: scale(1.1);
}
#livechat-client .btn-remove-file[data-v-2b48777a]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#livechat-client .input-area[data-v-2b48777a] {
  padding: 1rem 1.5rem;
  background: white;
  border-top: none;
  backdrop-filter: blur(10px);
  position: relative;
  flex-shrink: 0; /* Keep input area fixed height, never shrinks */
}
#livechat-client .input-area[data-v-2b48777a]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}
#livechat-client .input-field[data-v-2b48777a] {
  display: flex;
  align-items: center;
  background: var(--livechat-surface-color);
  border: 2px solid var(--livechat-border-color);
  border-radius: 2rem;
  padding: 0.55rem;
  gap: 0.55rem;
  transition: all 0.3s ease;
  box-shadow: var(--livechat-shadow-sm);
}
#livechat-client .message-input[data-v-2b48777a] {
  flex: 1;
  border: none;
  background: none;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--livechat-text-color);
}
#livechat-client .message-input[data-v-2b48777a]::-moz-placeholder {
  color: var(--livechat-text-muted);
}
#livechat-client .message-input[data-v-2b48777a]::placeholder {
  color: var(--livechat-text-muted);
}
#livechat-client .input-actions[data-v-2b48777a] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#livechat-client .btn-attachment[data-v-2b48777a],
#livechat-client .btn-emoji[data-v-2b48777a] {
  background: none;
  border: none;
  color: var(--livechat-text-muted);
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#livechat-client .btn-attachment[data-v-2b48777a]:hover,
#livechat-client .btn-emoji[data-v-2b48777a]:hover {
  background: var(--livechat-border-light);
  color: var(--livechat-primary-color);
  transform: scale(1.05);
}
#livechat-client .btn-send[data-v-2b48777a] {
  background: var(--global-color);
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: var(--livechat-shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}
#livechat-client .btn-send[data-v-2b48777a]:hover:not(:disabled) {
  /* transform: translateY(-1px) scale(1.05); */
  box-shadow: var(--livechat-shadow-lg);
}
#livechat-client .btn-send[data-v-2b48777a]:disabled {
  background: var(--livechat-text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
#livechat-client .emoji-picker[data-v-2b48777a] {
  position: absolute;
  bottom: 150px;
  right: 1.5rem;
  background: white;
  border: 2px solid var(--livechat-border-light);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--livechat-shadow-xl);
  z-index: 100;
  animation: fadeInScale-2b48777a 0.2s ease-out;
}
#livechat-client .emoji-grid[data-v-2b48777a] {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
#livechat-client .emoji-btn[data-v-2b48777a] {
  background: none;
  border: none;
  font-size: 1.375rem;
  cursor: pointer;
  padding: 0.625rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#livechat-client .emoji-btn[data-v-2b48777a]:hover {
  background: var(--livechat-surface-color);
  transform: scale(1.1);
}
#livechat-client .message-media[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#livechat-client .message-image[data-v-2b48777a] {
  max-width: 250px;
  max-height: 500px;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#livechat-client .message-bubble img[data-v-2b48777a] {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100px;
  display: block;
}
#livechat-client .message-video[data-v-2b48777a] {
  max-width: 300px;
  max-height: 200px;
  border-radius: 0.5rem;
  background: black;
}
#livechat-client .media-caption[data-v-2b48777a] {
  font-size: 0.875rem;
  color: inherit;
  opacity: 0.9;
  margin-top: 0.25rem;
}
#livechat-client .message-sent .media-caption[data-v-2b48777a] {
  color: rgba(255, 255, 255, 0.9);
}
#livechat-client .message-received .media-caption[data-v-2b48777a] {
  color: var(--livechat-text-muted);
}
#livechat-client .message-mixed[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#livechat-client .mixed-text[data-v-2b48777a] {
  font-size: 0.95rem;
  line-height: 1.4;
}
#livechat-client .mixed-files[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#livechat-client .mixed-file-item[data-v-2b48777a] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#livechat-client .file-info-small[data-v-2b48777a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: inherit;
  opacity: 0.8;
}
#livechat-client .file-size-small[data-v-2b48777a] {
  font-size: 0.625rem;
  opacity: 0.7;
}
#livechat-client .message-bubble.message-image[data-v-2b48777a],
#livechat-client .message-bubble.message-video[data-v-2b48777a],
#livechat-client .message-bubble.message-mixed[data-v-2b48777a] {
  padding: 0.5rem;
}
#livechat-client .message-bubble.message-image[data-v-2b48777a] {
  padding: 0;
}
#livechat-client .powered-by[data-v-2b48777a] {
  text-align: center;
  padding: 0.75rem;
  background: linear-gradient(90deg, var(--livechat-surface-color), white, var(--livechat-surface-color));
  border-top: 1px solid var(--livechat-border-light);
  font-size: 0.75rem;
  color: var(--livechat-text-muted);
  font-weight: 500;
}
#livechat-client .chat-view-compact .messages-container[data-v-2b48777a] {
  max-height: 450px;
}
#livechat-client .chat-view-compact .welcome-container[data-v-2b48777a] {
  max-width: 420px;
  padding: 2rem;
}
@media (max-width: 768px) {
#livechat-client[data-v-2b48777a] {
    /* Welcome Screen Mobile */
    /* Chat Interface Mobile */
    /* Emoji picker mobile */
    /* File preview mobile */
    /* Message media mobile */
}
#livechat-client .welcome-screen[data-v-2b48777a] {
    padding: 1.5rem 1rem;
}
#livechat-client .welcome-container[data-v-2b48777a] {
    padding: 2rem 1.5rem;
    max-width: 100%;
}
#livechat-client .welcome-title[data-v-2b48777a] {
    font-size: 1.5rem;
}
#livechat-client .chat-header[data-v-2b48777a] {
    padding: 1rem 1.25rem;
}
#livechat-client .chat-header-right[data-v-2b48777a] {
    gap: 0.75rem;
}
#livechat-client .user-info-badge[data-v-2b48777a] {
    padding: 0.375rem 0.625rem;
}
#livechat-client .user-name[data-v-2b48777a] {
    max-width: 80px;
    font-size: 0.8125rem;
}
#livechat-client .messages-container[data-v-2b48777a] {
    padding: 1.25rem;
}
#livechat-client .input-area[data-v-2b48777a] {
    padding: 1rem 1.25rem;
}
#livechat-client .input-field[data-v-2b48777a] {
    padding: 0.625rem;
    gap: 0.625rem;
}
#livechat-client .message-content[data-v-2b48777a] {
    max-width: 89%;
}
#livechat-client .message-bubble[data-v-2b48777a] {
    padding: 0.65rem 0.75rem;
    font-size: 0.9375rem;
}
#livechat-client .emoji-picker[data-v-2b48777a] {
    right: 1rem;
    left: 1rem;
    bottom: 130px;
    padding: 1rem;
}
#livechat-client .emoji-grid[data-v-2b48777a] {
    grid-template-columns: repeat(8, 1fr);
    gap: 0.375rem;
}
#livechat-client .emoji-btn[data-v-2b48777a] {
    padding: 0.5rem;
    font-size: 1.25rem;
}
#livechat-client .file-preview-area[data-v-2b48777a] {
    padding: 0.875rem 1.25rem;
}
#livechat-client .file-preview-item[data-v-2b48777a] {
    max-width: 100px;
}
#livechat-client .file-preview-image[data-v-2b48777a],
  #livechat-client .file-preview-video[data-v-2b48777a] {
    width: 80px;
    height: 60px;
}
#livechat-client .message-image[data-v-2b48777a] {
    max-width: 200px;
    max-height: 400px;
}
#livechat-client .message-video[data-v-2b48777a] {
    max-width: 240px;
    max-height: 150px;
}
}
@media (max-width: 480px) {
#livechat-client[data-v-2b48777a] {
    /* Extra small screens */
    /* File upload extra small */
    /* Message media extra small */
}
#livechat-client .welcome-container[data-v-2b48777a] {
    padding: 1.5rem 1rem;
}
#livechat-client .welcome-title[data-v-2b48777a] {
    font-size: 1.375rem;
}
#livechat-client .chat-header[data-v-2b48777a] {
    padding: 0.875rem 1rem;
}
#livechat-client .company-avatar img[data-v-2b48777a] {
    width: 40px;
    height: 40px;
}
#livechat-client .company-name[data-v-2b48777a] {
    font-size: 1rem;
}
#livechat-client .user-info-badge[data-v-2b48777a] {
    display: none; /* Hide on very small screens */
}
#livechat-client .messages-container[data-v-2b48777a] {
    padding: 1rem;
}
#livechat-client .input-area[data-v-2b48777a] {
    padding: 0.75rem 0.875rem;
}
#livechat-client .input-field[data-v-2b48777a] {
    padding: 0.375rem;
    gap: 0.375rem;
}
#livechat-client .message-input[data-v-2b48777a] {
    padding: 0.5rem;
    font-size: 0.9rem;
}
#livechat-client .input-actions[data-v-2b48777a] {
    gap: 0.25rem;
}
#livechat-client .btn-attachment[data-v-2b48777a],
  #livechat-client .btn-emoji[data-v-2b48777a] {
    padding: 0.5rem;
    min-width: 36px;
    min-height: 36px;
}
#livechat-client .btn-send[data-v-2b48777a] {
    padding: 0.5rem;
    min-width: 36px;
    min-height: 36px;
}
#livechat-client .message-content[data-v-2b48777a] {
    max-width: 85%;
}
#livechat-client .form-input[data-v-2b48777a],
  #livechat-client .form-textarea[data-v-2b48777a] {
    padding: 0.75rem;
}
#livechat-client .start-chat-btn[data-v-2b48777a] {
    padding: 0.875rem 1.5rem;
}
#livechat-client .file-preview-item[data-v-2b48777a] {
    max-width: 90px;
}
#livechat-client .file-preview-image[data-v-2b48777a],
  #livechat-client .file-preview-video[data-v-2b48777a] {
    width: 70px;
    height: 50px;
}
#livechat-client .message-image[data-v-2b48777a] {
    max-width: 180px;
    max-height: 300px;
}
#livechat-client .message-video[data-v-2b48777a] {
    max-width: 200px;
    max-height: 130px;
}
}
#livechat-client .minimized-chat[data-v-2b48777a] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: minimizedSlideIn-2b48777a 0.4s ease-out;
}
#livechat-client .minimized-button[data-v-2b48777a] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: white;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  box-shadow: var(--livechat-shadow-xl);
  transition: all 0.3s ease;
  min-width: 280px;
  border: 2px solid var(--livechat-border-light);
}
#livechat-client .minimized-button[data-v-2b48777a]:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(102, 126, 234, 0.1);
  border-color: var(--livechat-primary-color);
}
#livechat-client .minimized-avatar[data-v-2b48777a] {
  position: relative;
  flex-shrink: 0;
}
#livechat-client .minimized-avatar img[data-v-2b48777a] {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--livechat-shadow-sm);
}
#livechat-client .minimized-avatar .status-indicator[data-v-2b48777a] {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid white;
  transition: background-color 0.3s ease;
}
#livechat-client .minimized-avatar .status-indicator.online[data-v-2b48777a] {
  background: var(--livechat-accent-color);
}
#livechat-client .minimized-info[data-v-2b48777a] {
  flex: 1;
  text-align: left;
}
#livechat-client .minimized-info h4[data-v-2b48777a] {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--livechat-text-color);
  line-height: 1.2;
}
#livechat-client .minimized-info p[data-v-2b48777a] {
  margin: 0;
  font-size: 0.875rem;
  color: var(--livechat-text-muted);
  line-height: 1.2;
}
#livechat-client .minimized-info .typing-text[data-v-2b48777a] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--livechat-primary-color);
  font-weight: 500;
}
#livechat-client .typing-dots-mini[data-v-2b48777a] {
  display: flex;
  gap: 0.125rem;
}
#livechat-client .typing-dots-mini span[data-v-2b48777a] {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--livechat-primary-color);
  animation: typingMini-2b48777a 1.4s infinite ease-in-out;
}
#livechat-client .typing-dots-mini span[data-v-2b48777a]:nth-child(2) {
  animation-delay: 0.2s;
}
#livechat-client .typing-dots-mini span[data-v-2b48777a]:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingMini-2b48777a {
0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
}
30% {
    transform: translateY(-4px);
    opacity: 1;
}
}
#livechat-client .unread-badge[data-v-2b48777a] {
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
@keyframes minimizedSlideIn-2b48777a {
from {
    opacity: 0;
    transform: translateY(100%) scale(0.8);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
@media (max-width: 768px) {
#livechat-client .minimized-chat[data-v-2b48777a] {
    bottom: 15px;
    right: 15px;
    left: 15px;
}
#livechat-client .minimized-button[data-v-2b48777a] {
    min-width: auto;
    width: 100%;
    padding: 0.75rem;
}
#livechat-client .minimized-info h4[data-v-2b48777a] {
    font-size: 0.9375rem;
}
#livechat-client .minimized-info p[data-v-2b48777a] {
    font-size: 0.8125rem;
}
}
#livechat-client .toast-container[data-v-2b48777a] {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000; /* Higher than minimized chat */
  animation: toastSlideIn-2b48777a 0.3s ease-out;
  max-width: 400px;
  min-width: 300px;
}
@keyframes toastSlideIn-2b48777a {
from {
    transform: translateX(100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
#livechat-client .toast-content[data-v-2b48777a] {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: var(--livechat-shadow-lg);
  background: white;
  /* border-left: 4px solid; */
  backdrop-filter: blur(10px);
}
#livechat-client .toast-info[data-v-2b48777a] {
  border-left-color: #3b82f6;
}
#livechat-client .toast-info .toast-icon[data-v-2b48777a] {
  color: #3b82f6;
}
#livechat-client .toast-warning[data-v-2b48777a] {
  border-left-color: #f59e0b;
}
#livechat-client .toast-warning .toast-icon[data-v-2b48777a] {
  color: #f59e0b;
}
#livechat-client .toast-error[data-v-2b48777a] {
  border-left-color: #ef4444;
}
#livechat-client .toast-error .toast-icon[data-v-2b48777a] {
  color: #ef4444;
}
#livechat-client .toast-icon[data-v-2b48777a] {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
#livechat-client .toast-message[data-v-2b48777a] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #fff;
}
#livechat-client .toast-message span[data-v-2b48777a] {
  color: var(--livechat-text-color);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}
#livechat-client .toast-countdown[data-v-2b48777a] {
  font-size: 0.875rem;
  color: var(--livechat-text-muted);
  font-weight: 600;
}
#livechat-client .toast-close[data-v-2b48777a] {
  background: none;
  border: none;
  color: var(--livechat-text-muted);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: -0.125rem;
}
#livechat-client .toast-close[data-v-2b48777a]:hover {
  color: var(--livechat-text-color);
  background: var(--livechat-border-light);
}
@media (max-width: 768px) {
#livechat-client .toast-container[data-v-2b48777a] {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    min-width: auto;
}
#livechat-client .toast-content[data-v-2b48777a] {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
}
#livechat-client .toast-message span[data-v-2b48777a] {
    font-size: 0.875rem;
}
}
#livechat-client .media-preview-modal[data-v-2b48777a] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.517);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
  backdrop-filter: blur(5px);
}
#livechat-client .media-preview-container[data-v-2b48777a] {
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--livechat-shadow-xl);
}
#livechat-client .media-preview-header[data-v-2b48777a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--livechat-surface-color);
  border-bottom: 1px solid var(--livechat-border-color);
}
#livechat-client .media-preview-title[data-v-2b48777a] {
  font-weight: 600;
  color: var(--livechat-text-color);
  font-size: 1rem;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#livechat-client .media-preview-close[data-v-2b48777a] {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  color: var(--livechat-text-muted);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#livechat-client .media-preview-close[data-v-2b48777a]:hover {
  background: var(--livechat-border-light);
  color: var(--livechat-text-color);
}
#livechat-client .media-preview-content[data-v-2b48777a] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 200px;
}
#livechat-client .media-preview-image[data-v-2b48777a] {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
#livechat-client .media-preview-video[data-v-2b48777a] {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}
#livechat-client .message-image.clickable[data-v-2b48777a],
#livechat-client .message-video.clickable[data-v-2b48777a] {
  cursor: pointer;
  transition: all 0.2s ease;
}
#livechat-client .video-container[data-v-2b48777a] {
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
#livechat-client .video-container[data-v-2b48777a]:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
#livechat-client .video-play-overlay[data-v-2b48777a] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
#livechat-client .video-container:hover .video-play-overlay[data-v-2b48777a] {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
#livechat-client .media-preview-modal[data-v-2b48777a] {
    padding: 1rem;
}
#livechat-client .media-preview-container[data-v-2b48777a] {
    max-width: 100vw;
    max-height: 100vh;
}
#livechat-client .media-preview-header[data-v-2b48777a] {
    padding: 0.75rem 1rem;
}
#livechat-client .media-preview-title[data-v-2b48777a] {
    font-size: 0.9rem;
    max-width: 200px;
}
#livechat-client .media-preview-content[data-v-2b48777a] {
    padding: 1rem;
}
#livechat-client .media-preview-image[data-v-2b48777a],
  #livechat-client .media-preview-video[data-v-2b48777a] {
    max-height: 70vh;
}
}
@media (max-width: 400px) {
#livechat-client .input-actions[data-v-2b48777a] {
    position: absolute;
    right: 20px;
}
#livechat-client .input-field input[data-v-2b48777a] {
    max-width: calc(100% - 5rem);
}
}
#livechat-client[data-v-2b48777a] {
  /* Header Dropdown Menu Styles */
}
#livechat-client .preserve-linebreaks[data-v-2b48777a],
#livechat-client .chat-text[data-v-2b48777a] {
  white-space: pre-line !important; /* giữ xuống dòng nhưng bỏ extra space */
  word-break: break-word !important;
  word-wrap: break-word !important;
}
#livechat-client .message-bubble[data-v-2b48777a] {
  word-break: break-all !important;
}
#livechat-client .chat-interface-container[data-v-2b48777a] {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  background: white !important;
  border-radius: inherit !important;
  overflow: hidden !important;
  min-height: 0 !important; /* Critical for flex overflow behavior */
}
#livechat-client .chat-page-layout .chat-interface-container[data-v-2b48777a] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  background: rgba(224, 224, 224, 0.1411764706) !important;
}
#livechat-client .chat-page-layout .chat-interface-container .chat-interface[data-v-2b48777a] {
  max-height: 80vh !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 1.5rem !important;
  max-width: 480px !important;
  width: 100% !important;
  box-shadow: var(--livechat-shadow-2xl) !important;
  animation: slideInUp-2b48777a 0.6s ease-out !important;
}
#livechat-client .message-bubble.message-image[data-v-2b48777a] {
  background-color: transparent !important;
}
#livechat-client .message-bubble img[data-v-2b48777a] {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  min-width: 100px !important;
  display: block !important;
}
#livechat-client .dropdown-menu[data-v-2b48777a] {
  position: relative !important;
  display: inline-block !important;
  margin-right: 0 !important;
}
#livechat-client .dropdown-trigger[data-v-2b48777a] {
  background: transparent !important;
  border: none !important;
  padding: 8px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  color: #fff !important;
  transition: all 0.2s ease !important;
}
#livechat-client .dropdown-content[data-v-2b48777a] {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  background: white !important;
  border: 1px solid var(--livechat-border-color) !important;
  border-radius: 12px !important;
  box-shadow: var(--livechat-shadow-lg) !important;
  min-width: 250px !important;
  z-index: 1000 !important;
  padding: 8px 0 !important;
  animation: dropdownSlideIn-2b48777a 0.2s ease-out !important;
  transform-origin: top right !important;
}
@keyframes dropdownSlideIn-2b48777a {
from {
    opacity: 0 !important;
    transform: translateY(-8px) scale(0.95) !important;
}
to {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}
}
#livechat-client .dropdown-item[data-v-2b48777a] {
  width: 100% !important;
  padding: 12px 16px !important;
  background: none !important;
  border: none !important;
  text-align: left !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14px !important;
  color: var(--livechat-text-color) !important;
  transition: all 0.2s ease !important;
}
#livechat-client .dropdown-item svg[data-v-2b48777a] {
  color: var(--livechat-text-muted) !important;
  flex-shrink: 0 !important;
  transition: color 0.2s ease !important;
}
#livechat-client .dropdown-item span[data-v-2b48777a] {
  flex: 1 !important;
  font-weight: 500 !important;
}
#livechat-client .dropdown-item[data-v-2b48777a]:hover {
  background: var(--livechat-surface-color) !important;
  color: var(--global-color, #3b82f6) !important;
}
#livechat-client .dropdown-item:hover svg[data-v-2b48777a] {
  color: var(--global-color, #3b82f6) !important;
}
#livechat-client .dropdown-item[data-v-2b48777a]:active {
  background: rgba(var(--global-color, 59, 130, 246), 0.1) !important;
}
#livechat-client .dropdown-item[data-v-2b48777a]:first-child {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}
#livechat-client .dropdown-item[data-v-2b48777a]:last-child {
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}
@media screen and (max-width: 768px) {
#livechat-client input[data-v-2b48777a],
  #livechat-client textarea[data-v-2b48777a],
  #livechat-client select[data-v-2b48777a] {
    touch-action: manipulation !important;
    font-size: 16px !important;
}
}
#livechat-client .chat-header-left-wrapper[data-v-2b48777a] {
  display: flex;
  align-items: center;
}
@supports (height: 100dvh) {
.is-chat-page .chat-interface-container,
  .is-chat-page .chat-view,
  .is-chat-page .chat-page,
  .is-chat-page .chat-interface,
  .is-chat-page #livechat-client-app,
  .is-chat-page {
    height: 100dvh !important;
    overflow: hidden !important;
}
.is-chat-page .chat-view-compact .messages-container {
    max-height: 100% !important;
}
}
.chat-page[data-v-d5a203c3] {
  height: 100vh;
  background: var(--livechat-background-color);
}#livechat-client[data-v-6678e37a] {
  /* Floating Action Button */
  /* Unread Badge */
  /* Chat Window */
  /* Position variants */
  /* Mobile Responsive */
  /* Widget Backdrop (Mobile) */
  /* Animations */
  /* Accessibility */
}
#livechat-client .popup-widget[data-v-6678e37a] {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
}
#livechat-client .popup-widget[data-v-6678e37a] > * {
  pointer-events: auto;
}
#livechat-client .chat-fab[data-v-6678e37a] {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--widget-primary-color, var(--livechat-primary-color));
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: var(--livechat-shadow-lg);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#livechat-client .chat-fab[data-v-6678e37a]:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
#livechat-client .chat-fab.has-unread[data-v-6678e37a] {
  animation: pulse-6678e37a 2s infinite;
}
@keyframes pulse-6678e37a {
0%, 100% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
}
}
#livechat-client .unread-badge[data-v-6678e37a] {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  border-radius: 12px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 6px;
  border: 2px solid white;
  animation: bounce-6678e37a 1s ease-in-out;
}
@keyframes bounce-6678e37a {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-10px);
}
60% {
    transform: translateY(-5px);
}
}
#livechat-client .chat-window[data-v-6678e37a] {
  width: 380px;
  height: 600px;
  background: var(--livechat-background-color);
  border-radius: 0.75rem;
  box-shadow: var(--livechat-shadow-lg);
  overflow: hidden;
  position: absolute;
  bottom: 80px;
  right: 0;
}
#livechat-client .popup-widget[style*=bottom][style*=right] .chat-window[data-v-6678e37a] {
  bottom: 80px;
  right: 0;
}
#livechat-client .popup-widget[style*=bottom][style*=left] .chat-window[data-v-6678e37a] {
  bottom: 80px;
  left: 0;
}
#livechat-client .popup-widget[style*=top][style*=right] .chat-window[data-v-6678e37a] {
  top: 80px;
  right: 0;
}
#livechat-client .popup-widget[style*=top][style*=left] .chat-window[data-v-6678e37a] {
  top: 80px;
  left: 0;
}
@media (max-width: 768px) {
#livechat-client .chat-window[data-v-6678e37a] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    z-index: 10001;
}
#livechat-client .chat-fab[data-v-6678e37a] {
    width: 56px;
    height: 56px;
}
#livechat-client .unread-badge[data-v-6678e37a] {
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
}
}
#livechat-client .widget-backdrop[data-v-6678e37a] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}
#livechat-client .fade-enter-active[data-v-6678e37a],
#livechat-client .fade-leave-active[data-v-6678e37a] {
  transition: opacity 0.3s ease;
}
#livechat-client .fade-enter-from[data-v-6678e37a],
#livechat-client .fade-leave-to[data-v-6678e37a] {
  opacity: 0;
}
#livechat-client .slide-up-enter-active[data-v-6678e37a] {
  transition: all 0.3s ease;
}
#livechat-client .slide-up-leave-active[data-v-6678e37a] {
  transition: all 0.2s ease;
}
#livechat-client .slide-up-enter-from[data-v-6678e37a] {
  transform: translateY(100%);
  opacity: 0;
}
#livechat-client .slide-up-leave-to[data-v-6678e37a] {
  transform: translateY(20px);
  opacity: 0;
}
#livechat-client .chat-fab[data-v-6678e37a]:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
#livechat-client .chat-fab[data-v-6678e37a],
  #livechat-client .chat-window[data-v-6678e37a],
  #livechat-client .fade-enter-active[data-v-6678e37a],
  #livechat-client .fade-leave-active[data-v-6678e37a],
  #livechat-client .slide-up-enter-active[data-v-6678e37a],
  #livechat-client .slide-up-leave-active[data-v-6678e37a] {
    transition: none;
}
#livechat-client .chat-fab.has-unread[data-v-6678e37a] {
    animation: none;
}
#livechat-client .unread-badge[data-v-6678e37a] {
    animation: none;
}
}.popup-widget .company-avatar,
.popup-widget .welcome-logo {
  display: none !important;
}
.not-found-page[data-v-2dbbd130] {
  min-height: 100vh;
  height: 100vh;
  max-height: 100dvh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
}
.not-found-container[data-v-2dbbd130] {
  text-align: center;
  max-width: 500px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--livechat-shadow-xl);
  animation: slideInUp-2dbbd130 0.6s ease-out;
  z-index: 10;
  position: relative;
}
@keyframes slideInUp-2dbbd130 {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.error-icon[data-v-2dbbd130] {
  margin-bottom: 2rem;
  color: var(--livechat-primary-color);
  opacity: 0.8;
  animation: float-2dbbd130 3s ease-in-out infinite;
}
@keyframes float-2dbbd130 {
0%,
  100% {
    transform: translateY(0px);
}
50% {
    transform: translateY(-10px);
}
}
.error-content[data-v-2dbbd130] {
  margin-bottom: 2.5rem;
}
.error-title[data-v-2dbbd130] {
  font-size: 4rem;
  font-weight: 700;
  color: var(--livechat-primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.error-subtitle[data-v-2dbbd130] {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--livechat-text-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.error-description[data-v-2dbbd130] {
  font-size: 1rem;
  color: var(--livechat-text-muted);
  line-height: 1.6;
  margin: 0;
}
.error-actions[data-v-2dbbd130] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.btn[data-v-2dbbd130] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 52px;
}
.btn-primary[data-v-2dbbd130] {
  background: var(--livechat-primary-color);
  color: white;
  box-shadow: var(--livechat-shadow-md);
}
.btn-primary[data-v-2dbbd130]:hover {
  background: var(--livechat-primary-hover);
  /* transform: translateY(-2px); */
  box-shadow: var(--livechat-shadow-lg);
}
.btn-secondary[data-v-2dbbd130] {
  background: var(--livechat-surface-color);
  color: var(--livechat-text-color);
  border: 2px solid var(--livechat-border-color);
}
.btn-secondary[data-v-2dbbd130]:hover {
  background: #f1f5f9;
  border-color: var(--livechat-primary-color);
  transform: translateY(-1px);
}
.help-text[data-v-2dbbd130] {
  font-size: 0.875rem;
  color: var(--livechat-text-muted);
}
.help-link[data-v-2dbbd130] {
  color: var(--livechat-primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.help-link[data-v-2dbbd130]:hover {
  color: var(--livechat-primary-hover);
  text-decoration: underline;
}

/* Background Elements */
.background-elements[data-v-2dbbd130] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}
.floating-element[data-v-2dbbd130] {
  position: absolute;
  background: linear-gradient(135deg, var(--livechat-primary-color) 0%, #764ba2 100%);
  border-radius: 50%;
  opacity: 0.1;
  animation: float-random-2dbbd130 6s ease-in-out infinite;
}
.element-1[data-v-2dbbd130] {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.element-2[data-v-2dbbd130] {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}
.element-3[data-v-2dbbd130] {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}
@keyframes float-random-2dbbd130 {
0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
}
25% {
    transform: translate(20px, -20px) rotate(90deg);
}
50% {
    transform: translate(-10px, 20px) rotate(180deg);
}
75% {
    transform: translate(-20px, -10px) rotate(270deg);
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
.not-found-page[data-v-2dbbd130] {
    padding: 1rem;
}
.not-found-container[data-v-2dbbd130] {
    padding: 2rem 1.5rem;
}
.error-title[data-v-2dbbd130] {
    font-size: 3rem;
}
.error-subtitle[data-v-2dbbd130] {
    font-size: 1.5rem;
}
.error-description[data-v-2dbbd130] {
    font-size: 0.9rem;
}
.btn[data-v-2dbbd130] {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
}
.error-actions[data-v-2dbbd130] {
    gap: 0.75rem;
}
.floating-element[data-v-2dbbd130] {
    display: none; /* Hide background elements on mobile for performance */
}
}
@media (max-width: 480px) {
.not-found-container[data-v-2dbbd130] {
    padding: 1.5rem 1rem;
}
.error-title[data-v-2dbbd130] {
    font-size: 2.5rem;
}
.error-subtitle[data-v-2dbbd130] {
    font-size: 1.25rem;
}
.error-icon[data-v-2dbbd130] {
    margin-bottom: 1.5rem;
}
.error-icon svg[data-v-2dbbd130] {
    width: 80px;
    height: 80px;
}
}

/* CSS Variables from main theme */
[data-v-2dbbd130]:root {
  --livechat-primary-color: #3b82f6;
  --livechat-primary-hover: #2563eb;
  --livechat-secondary-color: #64748b;
  --livechat-success-color: #10b981;
  --livechat-danger-color: #ef4444;
  --livechat-warning-color: #f59e0b;
  --livechat-background-color: #ffffff;
  --livechat-surface-color: #f8fafc;
  --livechat-border-color: #e2e8f0;
  --livechat-text-color: #1e293b;
  --livechat-text-muted: #64748b;
  --livechat-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --livechat-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --livechat-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --livechat-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
.not-found-container[data-v-2dbbd130],
  .error-icon[data-v-2dbbd130],
  .floating-element[data-v-2dbbd130],
  .btn[data-v-2dbbd130] {
    animation: none;
}
.btn[data-v-2dbbd130]:hover {
    transform: none;
}
}
