/*!*************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/chatbot/chatbot.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************/
/**
 * Chatbot Styles
 */
/* Chat Widget Container */
#pattern-ai-chat {
  --chat-primary: #0073aa;
  --chat-primary-dark: #005a87;
  --chat-bg: #ffffff;
  --chat-text: #1e1e1e;
  --chat-text-light: #757575;
  --chat-border: #e0e0e0;
  --chat-user-bg: #0073aa;
  --chat-user-text: #ffffff;
  --chat-assistant-bg: #f0f0f0;
  --chat-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  --chat-radius: 16px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
/* Toggle Button */
.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--chat-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--chat-shadow);
  transition: transform 0.2s ease, background 0.2s ease;
  color: white;
}
.chat-toggle:hover {
  transform: scale(1.05);
  background: var(--chat-primary-dark);
}
.chat-toggle svg {
  width: 28px;
  height: 28px;
}
/* Chat Window */
.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 500px;
  max-height: calc(100vh - 140px);
  background: var(--chat-bg);
  border-radius: var(--chat-radius);
  box-shadow: var(--chat-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
#pattern-ai-chat.open .chat-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
/* Chat Header */
.chat-header {
  background: var(--chat-primary);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-content {
  display: flex;
  flex-direction: column;
}
.chat-title {
  font-weight: 600;
  font-size: 16px;
}
.chat-subtitle {
  font-size: 12px;
  opacity: 0.8;
}
.chat-header-actions {
  display: flex;
  gap: 8px;
}
.chat-action-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  color: white;
  transition: background 0.2s ease;
}
.chat-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
/* Chat Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-message {
  display: flex;
  max-width: 85%;
}
.chat-message.user {
  align-self: flex-end;
}
.chat-message.assistant {
  align-self: flex-start;
}
.message-content {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-message.user .message-content {
  background: var(--chat-user-bg);
  color: var(--chat-user-text);
  border-bottom-right-radius: 4px;
}
.chat-message.assistant .message-content {
  background: var(--chat-assistant-bg);
  color: var(--chat-text);
  border-bottom-left-radius: 4px;
}
/* Typing Indicator */
.typing-indicator .message-content {
  display: flex;
  gap: 4px;
  padding: 16px 20px;
}
.typing-indicator .dot {
  width: 8px;
  height: 8px;
  background: var(--chat-text-light);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.typing-indicator .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
/* Chat Notice */
.chat-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #e7f5ff;
  border: 1px solid #74c0fc;
  border-radius: 8px;
  font-size: 12px;
  color: #1971c2;
  animation: fadeInOut 5s ease forwards;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Chat Input */
.chat-input-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--chat-border);
  background: var(--chat-bg);
}
.chat-input {
  flex: 1;
  border: 1px solid var(--chat-border);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.chat-input:focus {
  border-color: var(--chat-primary);
}
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--chat-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s ease;
}
.chat-send:hover {
  background: var(--chat-primary-dark);
}
.chat-send:disabled {
  background: var(--chat-text-light);
  cursor: not-allowed;
}
/* Demo Mode Indicator */
.demo-mode-indicator {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff3bf;
  border: 1px solid #ffd43b;
  color: #e67700;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9998;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.demo-mode-indicator strong {
  text-transform: capitalize;
}
.demo-off {
  color: #c92a2a;
  text-decoration: none;
  font-weight: 500;
}
.demo-off:hover {
  text-decoration: underline;
}
/* Links in messages */
.message-content a {
  color: inherit;
  text-decoration: underline;
}
.chat-message.user .message-content a {
  color: #ffffff;
}
/* Scrollbar styling */
.chat-messages::-webkit-scrollbar {
  width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--chat-border);
  border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
  background: var(--chat-text-light);
}
/* Mobile Responsive */
@media (max-width: 480px) {
  #pattern-ai-chat {
    bottom: 16px;
    right: 16px;
  }
  .chat-window {
    width: calc(100vw - 32px);
    height: calc(100vh - 100px);
    bottom: 70px;
    right: -8px;
  }
  .chat-toggle {
    width: 52px;
    height: 52px;
  }
  .demo-mode-indicator {
    top: auto;
    bottom: 80px;
    font-size: 11px;
    padding: 6px 12px;
  }
}
/* ================================================
   PHP-Rendered Markup Styles (.poc-chatbot)
   ================================================ */
.poc-chatbot {
  --poc-primary: #0073aa;
  --poc-primary-dark: #005a87;
  --poc-bg: #ffffff;
  --poc-text: #1e1e1e;
  --poc-text-light: #757575;
  --poc-border: #e0e0e0;
  --poc-user-bg: #0073aa;
  --poc-user-text: #ffffff;
  --poc-assistant-bg: #f0f0f0;
  --poc-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  --poc-radius: 16px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
/* Toggle Button */
.poc-chatbot__toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--poc-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--poc-shadow);
  transition: transform 0.2s ease, background 0.2s ease;
  color: white;
}
.poc-chatbot__toggle:hover {
  transform: scale(1.05);
  background: var(--poc-primary-dark);
}
.poc-chatbot__icon {
  width: 24px;
  height: 24px;
}
.poc-chatbot__icon--close {
  display: none;
}
.poc-chatbot--open .poc-chatbot__icon--chat {
  display: none;
}
.poc-chatbot--open .poc-chatbot__icon--close {
  display: block;
}
/* Chat Window */
.poc-chatbot__window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 500px;
  max-height: calc(100vh - 140px);
  background: var(--poc-bg);
  border-radius: var(--poc-radius);
  box-shadow: var(--poc-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.poc-chatbot--open .poc-chatbot__window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
/* Chat Header */
.poc-chatbot__header {
  background: var(--poc-primary);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.poc-chatbot__title {
  font-weight: 600;
  font-size: 16px;
}
.poc-chatbot__minimize {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  color: white;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poc-chatbot__minimize:hover {
  background: rgba(255, 255, 255, 0.3);
}
/* Chat Messages */
.poc-chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.poc-chatbot__message {
  display: flex;
  max-width: 85%;
}
.poc-chatbot__message--user {
  align-self: flex-end;
}
.poc-chatbot__message--assistant {
  align-self: flex-start;
}
.poc-chatbot__message-content {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.poc-chatbot__message--user .poc-chatbot__message-content {
  background: var(--poc-user-bg);
  color: var(--poc-user-text);
  border-bottom-right-radius: 4px;
}
.poc-chatbot__message--assistant .poc-chatbot__message-content {
  background: var(--poc-assistant-bg);
  color: var(--poc-text);
  border-bottom-left-radius: 4px;
}
/* Typing Indicator */
.poc-chatbot__typing .poc-chatbot__message-content {
  display: flex;
  gap: 4px;
  padding: 16px 20px;
}
.poc-chatbot__dot {
  width: 8px;
  height: 8px;
  background: var(--poc-text-light);
  border-radius: 50%;
  animation: poc-typing 1.4s infinite ease-in-out;
}
.poc-chatbot__dot:nth-child(2) {
  animation-delay: 0.2s;
}
.poc-chatbot__dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes poc-typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
/* Chat Input Form */
.poc-chatbot__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--poc-border);
  background: var(--poc-bg);
}
.poc-chatbot__input {
  flex: 1;
  border: 1px solid var(--poc-border);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.poc-chatbot__input:focus {
  border-color: var(--poc-primary);
}
.poc-chatbot__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--poc-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s ease;
}
.poc-chatbot__send:hover {
  background: var(--poc-primary-dark);
}
.poc-chatbot__send:disabled {
  background: var(--poc-text-light);
  cursor: not-allowed;
}
/* Links in messages */
.poc-chatbot__message-content a {
  color: inherit;
  text-decoration: underline;
}
.poc-chatbot__message--user .poc-chatbot__message-content a {
  color: #ffffff;
}
/* Scrollbar styling */
.poc-chatbot__messages::-webkit-scrollbar {
  width: 6px;
}
.poc-chatbot__messages::-webkit-scrollbar-track {
  background: transparent;
}
.poc-chatbot__messages::-webkit-scrollbar-thumb {
  background: var(--poc-border);
  border-radius: 3px;
}
.poc-chatbot__messages::-webkit-scrollbar-thumb:hover {
  background: var(--poc-text-light);
}
/* Mobile Responsive - PHP Markup */
@media (max-width: 480px) {
  .poc-chatbot {
    bottom: 16px;
    right: 16px;
  }
  .poc-chatbot__window {
    width: calc(100vw - 32px);
    height: calc(100vh - 100px);
    bottom: 70px;
    right: -8px;
  }
  .poc-chatbot__toggle {
    width: 52px;
    height: 52px;
  }
}
/* Content Update Notices */
.poc-content-notice {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: poc-slide-up 0.3s ease;
}
.poc-content-notice--updating {
  background: #fff;
  color: #1e1e1e;
  border: 1px solid #e0e0e0;
}
.poc-content-notice--success {
  background: #00a32a;
  color: #fff;
}
.poc-content-notice--fade-out {
  animation: poc-fade-out 0.3s ease forwards;
}
.poc-content-notice__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e0e0e0;
  border-top-color: #0073aa;
  border-radius: 50%;
  animation: poc-spin 0.8s linear infinite;
}
@keyframes poc-slide-up {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes poc-fade-out {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes poc-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Content block update animation */
.poc-content-updated {
  animation: poc-content-highlight 1s ease;
}
@keyframes poc-content-highlight {
  0% {
    outline: 3px solid rgba(0, 115, 170, 0.8);
    outline-offset: 2px;
  }
  100% {
    outline: 3px solid rgba(0, 115, 170, 0);
    outline-offset: 8px;
  }
}

/*# sourceMappingURL=chatbot.css.map*/