/**
 * RCS Angola Chat Bot Styles
 * Exactly matching the Next.js implementation
 */

/* Chat Container */
#rcs-chat-container {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
}

/* Chat Button */
.rcs-chat-button {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background-color: #0787f0;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s;
  z-index: 10000;
  position: relative;
  z-index: 10001; /* Higher z-index than chat box */
  margin-bottom: 16px; /* Add space below button */
}

.rcs-chat-button:hover {
  background-color: #0339cc;
}

.message-circle-icon {
  width: 24px;
  height: 24px;
}

.chat-close-button {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ef4444;
  color: white;
  border: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 0;
  line-height: 1;
}

.chat-close-button:hover {
  background-color: #dc2626;
}

/* Chat Box */
.rcs-chat-box {
  width: 400px;
  max-width: 90vw;
  height: 600px;
  max-height: 80vh;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 80px; /* Leave space for the chat button below */
  right: 0;
  z-index: 10000;
}

@media (min-width: 640px) {
  .rcs-chat-box {
    width: 384px;
  }
}

/* Small screens (phones) */
@media (max-width: 480px) {
  .rcs-chat-box {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    bottom: 0;
    right: 0;
    position: fixed;
    border-radius: 0;
  }
  
  /* Auto-hide chat button when chat is open on mobile */
  .rcs-chat-button.chat-open {
    display: none !important;
  }
  
  .rcs-chat-header {
    border-radius: 0;
  }
  
  /* Adjust chat messages container for mobile */
  .rcs-chat-messages {
    height: calc(100vh - 160px);
    padding: 0.75rem;
  }
  
  /* Make sure footer sticks to bottom on mobile */
  .rcs-chat-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    border-radius: 0;
  }
  
  /* Ensure label doesn't overflow screen on mobile */
  .rcs-chat-label {
    max-width: 60vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Chat Header */
.rcs-chat-header {
  background-color: #224286;
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Ensure proper positioning context */
}

.rcs-chat-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-left: 40px; /* Make room for the menu button */
  margin-right: auto; /* Push title to left, controls to right */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 160px); /* Make room for controls and menu button */
}

.rcs-chat-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}

.rcs-chat-close:hover {
  background-color: #1d4ed8;
}

/* Chat Messages */
.rcs-chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Message Wrappers */
.rcs-message-wrapper {
  display: flex;
  margin-bottom: 1rem;
}

.user-message {
  justify-content: flex-end;
}

.assistant-message {
  justify-content: flex-start;
}

/* Message Bubbles */
.rcs-message-bubble {
  padding: 0.75rem;
  border-radius: 0.5rem;
  max-width: 80%;
  word-wrap: break-word;
}

.user-bubble {
  background-color: #2563eb;
  color: white;
}

.assistant-bubble {
  background-color: #f3f4f6;
  color: #1f2937;
}

/* Message Content */
.rcs-message-content {
  font-size: 0.875rem;
}

.rcs-message-content p {
  margin: 0 0 0.5rem 0;
}

.rcs-message-content p:last-child {
  margin-bottom: 0;
}

.rcs-message-content ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

/* Message Sources */
.rcs-message-sources {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.sources-title {
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.sources-list {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin: 0;
}

/* Message Reactions */
.rcs-message-reactions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.reaction-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.reaction-button:hover {
  background-color: #e5e7eb;
}

/* Chat Footer */
.rcs-chat-footer {
  border-top: 1px solid #e5e7eb;
  padding: 0.75rem;
  background-color: #f3f4f6;
  border-radius: 0 0 0.5rem 0.5rem;
}

.rcs-chat-form {
  display: flex;
  gap: 0.75rem; /* Add space between textarea and button */
  align-items: flex-end; /* Align items to bottom */
  width: 100%;
}

.rcs-chat-input {
  flex: 1;
  min-height: 40px;
  max-height: 100px;
  padding: 0.75rem;
  border: none;
  border-radius: 1.5rem;
  outline: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: white;
  resize: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: calc(100% - 50px); /* Subtract send button width + gap */
}

.rcs-chat-actions {
  display: flex;
  align-items: flex-end;
  margin-bottom: 4px; /* Align with textarea bottom */
}

.rcs-chat-send {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0; /* Prevent button from shrinking */
}

/* Add auto-resize on input */
.rcs-chat-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.rcs-chat-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  align-items: flex-end;
}

.rcs-chat-send {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background-color: #2563eb;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rcs-chat-send:hover:not(:disabled) {
  background-color: #1d4ed8;
}

.rcs-chat-send:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

.send-icon {
  width: 16px;
  height: 16px;
}

/* Loading Animation */
.loading-bubble {
  padding: 0.75rem;
}

.loading-dots {
  display: flex;
  gap: 0.25rem;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background-color: #9ca3af;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Predefined Options */
.rcs-chat-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.options-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  margin: 0 0 0.5rem 0;
}

.option-button {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  justify-content: flex-start;
}

.option-button:hover {
  background-color: #f9fafb;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sub-options {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sub-option-button {
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  text-align: left;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  justify-content: flex-start;
}

.sub-option-button:hover {
  background-color: #f9fafb;
}

/* Responsive Adjustments */
.rcs-chat-box {
  width: 400px; /* Increased from 320px */
  height: 600px;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 640px) {
  .rcs-chat-box {
    width: 450px; /* Increased from 384px */
    height: 700px;
  }
}

/* Update responsive styles as well */
@media (max-width: 640px) {
  .rcs-chat-box {
    width: calc(100vw - 32px);
    height: 600px;
  }
}

/* Header controls */
.rcs-chat-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: auto; /* Push controls to right */
}

.rcs-chat-maximize {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
}

.rcs-chat-maximize:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.rcs-chat-maximize svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* Add a subtle tooltip on hover */
.rcs-chat-maximize {
  position: relative;
}

.rcs-chat-maximize::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.rcs-chat-maximize:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Maximized state */
.rcs-chat-box.maximized {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  z-index: 99999 !important;
}

.rcs-chat-box.maximized .rcs-chat-messages {
  height: calc(100vh - 130px) !important;
}

/* Maximized chat styling improvements */
.rcs-chat-box.maximized .rcs-chat-messages {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.rcs-chat-box.maximized .rcs-message-wrapper {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rcs-chat-box.maximized .rcs-message-bubble {
  max-width: 85%;
}

.rcs-chat-box.maximized .rcs-chat-footer {
  max-width: 800px;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 1.5rem;
  background-color: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}

.rcs-chat-box.maximized .rcs-chat-form {
  max-width: 700px;
  margin: 0 auto;
}

.rcs-chat-box.maximized .rcs-chat-options {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rcs-chat-box.maximized .rcs-message-content {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive adjustments for maximized state */
@media (max-width: 880px) {
  .rcs-chat-box.maximized .rcs-chat-messages {
    max-width: 90%;
    padding: 1.5rem;
  }
  
  .rcs-chat-box.maximized .rcs-message-wrapper {
    max-width: 90%;
  }
  
  .rcs-chat-box.maximized .rcs-chat-footer {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .rcs-chat-box.maximized .rcs-chat-messages {
    padding: 1rem;
  }
  
  .rcs-chat-box.maximized .rcs-message-bubble {
    max-width: 90%;
  }
}

.rcs-chat-box.maximized .rcs-chat-header {
  border-radius: 0 !important;
}

/* Responsive adjustments for maximized state */
@media (max-width: 640px) {
  .rcs-chat-box.maximized {
    width: 100vw !important;
    height: 100vh !important;
  }
}

/* Chat Button Label */
.rcs-chat-label {
  position: absolute;
  right: 70px;
  bottom: 12px;
  background-color: rgb(12, 131, 228);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.label-close-button {
  background: none;
  border: none;
  color: #ff0000;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-close-button:hover {
  color: #dc2626;
}

/* Update the FACs container styles */
.rcs-message-facs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%; /* Ensure container takes full width */
}

/* Update the FAC button styles */
.fac-button {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: normal; /* Allow text to wrap */
  max-width: 100%; /* Ensure button doesn't overflow container */
  word-break: break-word; /* Break long words if needed */
  text-align: left; /* Align text to left */
  margin-bottom: 4px; /* Add some space between wrapped lines */
  flex: 0 1 auto; /* Allow buttons to shrink but not grow */
}

/* Update the message bubble to ensure proper containment */
.rcs-message-bubble {
  padding: 0.75rem;
  border-radius: 0.5rem;
  max-width: 80%;
  word-wrap: break-word;
  width: 100%; /* Ensure bubble takes full width */
  box-sizing: border-box; /* Include padding in width calculation */
}

.fac-button:hover {
  background-color: #e0e0e0;
}

.fac-button.close {
  background-color: #ff4444;
  color: white;
}

.fac-button.interaction {
  background-color: #4CAF50;
  color: white;
}

.options-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 12px 0;
  color: #666;
  font-size: 14px;
}

.options-separator::before,
.options-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.options-separator span {
  margin: 0 10px;
  padding: 0 5px;
  background: white;
}

.interactive-option {
  background-color: #007bff !important;
  color: white !important;
  font-weight: bold;
  border: none !important;
  margin-top: 5px;
}

.interactive-option:hover {
  background-color: #0056b3 !important;
}

.end-chat-option {
  background-color: #f5f5f5 !important;
  color: #d63031 !important;
  border: 1px solid #d63031 !important;
  margin-top: 8px;
}

.end-chat-option:hover {
  background-color: #ffeeee !important;
}

/* Medium screens (tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .rcs-chat-box {
    width: 85vw;
    height: 70vh;
  }
}

/* Larger screens (desktops) */
@media (min-width: 769px) {
  .rcs-chat-box {
    width: 450px;
    height: 600px;
  }
}

/* Extra large screens */
@media (min-width: 1200px) {
  .rcs-chat-box {
    width: 480px;
    height: 700px;
  }
}

/* Adjustments for chat header on small screens */
/* Mobile adjustments */
@media (max-width: 480px) {
  .rcs-chat-header {
    padding: 0.75rem 1rem;
  }
  
  .main-menu-button {
    left: 10px;
    padding: 5px 8px;
    font-size: 12px;
  }
  
  .main-menu-button span {
    display: none; /* Hide the "Menu" text on mobile to save space */
  }
  
  .rcs-chat-title {
    font-size: 1rem;
    margin-left: 35px; /* Slightly smaller margin for mobile */
    max-width: calc(100% - 130px);
  }
}

/* Responsive input area adjustments */
@media (max-width: 480px) {
  .rcs-chat-form {
    padding: 0.5rem;
  }
  
  .rcs-chat-input {
    font-size: 16px; /* Prevent auto-zoom on iOS */
  }
}

/* Fix for predefined options on small screens */
@media (max-width: 480px) {
  .rcs-chat-options {
    max-width: 100%;
  }
  
  .option-button {
    padding: 0.75rem;
    font-size: 14px;
    width: 100%;
  }
}

/* Ensure FAC buttons work well on smaller screens */
@media (max-width: 480px) {
  .rcs-message-facs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .fac-button {
    width: 100%;
    padding: 8px 12px;
    text-align: center;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .rcs-chat-box.mobile-view {
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 80px); /* Leave space for button */
    bottom: 80px;
    right: 0;
    position: fixed;
    border-radius: 0;
  }
}

/* Sub-options container */
.sub-options-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

/* Back button */
.back-button {
  background-color: #e9ecef;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 12px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #495057;
  font-weight: 500;
  transition: background-color 0.2s;
}

.back-button:hover {
  background-color: #dee2e6;
}

/* Sub-option buttons */
.sub-option-button {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: flex-start;
}

.sub-option-button:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

/* Responsive adjustments for sub-options */
@media (max-width: 480px) {
  .sub-options-container {
    padding: 0.75rem;
  }
  
  .sub-option-button {
    padding: 0.75rem;
    font-size: 14px;
  }
}

/* Main menu button - updated position to top right */
/* Main menu button - updated position to top left */
.main-menu-button {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%); /* Center vertically in header */
  z-index: 10002;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Animation for menu button */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-50%) translateX(-5px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.main-menu-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.main-menu-button {
  animation: fadeIn 0.3s ease-out;
}

.main-menu-button svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Animation for menu button */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-menu-button {
  animation: fadeIn 0.3s ease-out;
}

/* Mobile adjustments for the menu button */
@media (max-width: 480px) {
  .main-menu-button {
    left: 10px; /* Adjust position for mobile */
    padding: 5px 8px;
    font-size: 12px;
  }
  
  .main-menu-button span {
    display: none; /* Hide the "Menu" text on mobile to save space */
  }
}

/* Core responsive adjustments */
@media (max-width: 480px) {
  #rcs-chat-container {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .rcs-chat-box {
    width: 100% !important;
    height: 100vh !important;
    max-width: 100% !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
  }

  .rcs-chat-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .rcs-chat-messages {
    margin-top: 60px;
    padding-bottom: 80px;
    height: calc(100vh - 140px) !important;
  }

  .rcs-chat-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px;
    z-index: 1000;
  }

  .rcs-chat-button {
    bottom: 20px;
    right: 20px;
  }

  .rcs-chat-label {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rcs-message-bubble {
    max-width: 85%;
  }

  .rcs-message-facs {
    flex-direction: column;
  }

  .fac-button {
    width: 100%;
    text-align: center;
  }
}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 768px) {
  .rcs-chat-box {
    width: 90vw;
    height: 80vh;
    right: 5vw;
  }

  .rcs-message-bubble {
    max-width: 75%;
  }
}

/* Landscape mode adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .rcs-chat-box {
    height: 100vh !important;
    max-height: 100vh !important;
  }

  .rcs-chat-messages {
    height: calc(100vh - 120px) !important;
    padding-bottom: 60px;
  }

  .rcs-chat-footer {
    padding: 5px 10px;
  }

  .rcs-chat-input {
    min-height: 35px;
    max-height: 80px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .rcs-chat-input {
    font-size: 16px;
  }
  
  .rcs-message-content {
    font-size: 14px;
  }
}