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

:root {
  --lp-primary: #162953;
  --lp-secondary: #F6A21E;
  --lp-accent: #F49f20;
  --lp-gradient: linear-gradient(135deg, #162953 0%, #1e3a6e 100%);
  --lp-gradient-accent: linear-gradient(135deg, #F6A21E 0%, #F49f20 100%);
  --lp-white: #fff;
  --lp-light: #f8f9fa;
  --lp-gray: #6c757d;
  --lp-border: #e9ecef;
  --lp-success: #4ade80;
  --lp-shadow: 0 8px 32px rgba(22, 41, 83, 0.15);
  --lp-shadow-lg: 0 12px 48px rgba(22, 41, 83, 0.25);
  --lp-radius: 16px;
  --lp-radius-sm: 12px;
  --lp-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
}

.lapeng-chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-gradient);
  color: var(--lp-secondary);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(22, 41, 83, .35);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
  animation: lp-pulse 2s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation
}

.lapeng-chatbot-toggle:hover {
  transform: scale(1.08)
}

.lapeng-chatbot-toggle.active:hover .close-icon {
  transform: rotate(90deg);
  transition: transform .3s ease
}

.lapeng-chatbot-toggle:active {
  transform: scale(0.95)
}


.lapeng-chatbot-toggle svg {
  width: 26px;
  height: 26px;
  fill: var(--lp-secondary)
}

.lapeng-chatbot-toggle .close-icon {
  display: none;
  fill: none;
  stroke: var(--lp-secondary);
  stroke-width: 2.5;
  stroke-linecap: round
}

.lapeng-chatbot-toggle.active .chat-icon {
  display: none
}

.lapeng-chatbot-toggle.active .close-icon {
  display: block
}

.lapeng-chatbot-toggle.active {
  animation: none;
  background: var(--lp-gradient)
}

@keyframes lp-pulse {
  0% {
    box-shadow: var(--lp-shadow-lg), 0 0 0 0 rgba(246, 162, 30, 0.6)
  }
  50% {
    box-shadow: var(--lp-shadow-lg), 0 0 0 15px rgba(246, 162, 30, 0)
  }
  100% {
    box-shadow: var(--lp-shadow-lg), 0 0 0 0 rgba(246, 162, 30, 0)
  }
}

.lapeng-chatbot-window {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 370px;
  max-width: calc(100vw - 40px);
  height: 530px;
  max-height: calc(100vh - 108px);
  border-radius: var(--lp-radius);
  background: var(--lp-white);
  box-shadow: 0 8px 40px rgba(22, 41, 83, .2);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--lp-font);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(.95);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1), visibility 0s .35s;
  border: 1px solid rgba(22, 41, 83, 0.08)
}

.lapeng-chatbot-window.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1), visibility 0s 0s
}

.lp-header {
  background: var(--lp-gradient);
  color: var(--lp-white);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden
}

.lp-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(246, 162, 30, 0.1) 0%, transparent 50%);
  pointer-events: none
}

.lp-header .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(246, 162, 30, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--lp-secondary);
  overflow: hidden
}

.lp-header .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%
}

@keyframes lp-avatar-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(246, 162, 30, 0.3) }
  50% { box-shadow: 0 0 25px rgba(246, 162, 30, 0.5) }
}

.lp-header .avatar svg {
  width: 18px;
  height: 18px;
  fill: var(--lp-secondary)
}

.lp-header .info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-white) !important;
  letter-spacing: .2px
}

.lp-header .info p {
  margin: 2px 0 0;
  font-size: 11px;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400
}

.lp-header .info p .dot {
  width: 8px;
  height: 8px;
  background: var(--lp-success);
  border-radius: 50%;
  display: inline-block;
  animation: lp-dot-pulse 2s ease-in-out infinite
}

@keyframes lp-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1) }
  50% { opacity: .6; transform: scale(1.2) }
}

.lp-close-btn {
  margin-left: auto;
  background: rgba(246, 162, 30, .2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent
}

.lp-close-btn:hover {
  background: rgba(246, 162, 30, .35);
  transform: rotate(90deg)
}


.lp-close-btn svg {
  display: block;
  transition: transform .3s ease
}

.lp-notif {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-lg), 0 0 0 1px rgba(246, 162, 30, 0.1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(.9);
  transition: all .5s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: none;
  max-width: 320px;
  border: none;
  backdrop-filter: blur(12px)
}

.lp-notif.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: lp-notif-bounce .6s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes lp-notif-bounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(.8)
  }
  50% {
    transform: translateY(-5px) scale(1.05)
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.lp-notif-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--lp-secondary);
  box-shadow: 0 0 15px rgba(246, 162, 30, 0.25);
  overflow: hidden;
  animation: lp-avatar-glow 3s ease-in-out infinite
}

.lp-notif-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%
}

.lp-notif-avatar svg {
  display: block
}

.lp-notif-avatar svg path {
  stroke: var(--lp-secondary)
}

.lp-notif-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0
}

.lp-notif-text strong {
  font-size: 14px;
  color: var(--lp-primary);
  white-space: nowrap;
  font-weight: 600
}

.lp-notif-text span {
  font-size: 12px;
  color: var(--lp-gray);
  white-space: nowrap
}

.lp-notif-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--lp-gray);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: all .2s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.lp-notif-close:hover {
  color: var(--lp-primary);
  transform: scale(1.1)
}

.lp-notif:hover {
  box-shadow: var(--lp-shadow-lg), 0 8px 30px rgba(246, 162, 30, 0.25)
}

.lp-notif.show:hover {
  transform: translateY(-3px) scale(1.02)
}

.lp-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
  background: var(--lp-light);
  position: relative;
  overscroll-behavior: contain
}

.lp-messages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(246, 162, 30, 0.05) 0%, transparent 100%);
  pointer-events: none
}

.lp-messages::-webkit-scrollbar {
  width: 5px
}

.lp-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lp-secondary) 0%, var(--lp-primary) 100%);
  border-radius: 10px
}

.lp-messages::-webkit-scrollbar-track {
  background: rgba(22, 41, 83, 0.05);
  border-radius: 10px
}

.lp-msg {
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: lp-msg-in .4s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes lp-msg-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.95)
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.lp-msg.bot {
  align-self: flex-start
}

.lp-msg.user {
  align-self: flex-end
}

.lp-msg .bubble {
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word
}

.lp-msg.bot .bubble {
  background: var(--lp-white);
  color: #333;
  border: 1px solid rgba(22, 41, 83, 0.1);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(22, 41, 83, 0.06)
}

.lp-msg.user .bubble {
  background: var(--lp-gradient);
  color: var(--lp-white);
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(22, 41, 83, 0.2)
}

.lp-msg .time {
  font-size: 10px;
  color: var(--lp-gray);
  padding: 0 4px;
  font-weight: 500
}

.lp-msg.user .time {
  text-align: right;
  color: rgba(255, 255, 255, 0.7)
}

.lp-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  max-width: 85%
}

.lp-typing span {
  width: 6px;
  height: 6px;
  background: var(--lp-gray);
  border-radius: 50%;
  animation: lp-bounce 1.4s ease-in-out infinite
}

.lp-typing span:nth-child(2) {
  animation-delay: .2s
}

.lp-typing span:nth-child(3) {
  animation-delay: .4s
}

@keyframes lp-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    background: var(--lp-secondary)
  }
  30% {
    transform: translateY(-8px);
    background: var(--lp-primary)
  }
}

.lp-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  flex-shrink: 0
}

.lp-suggestions button {
  padding: 6px 12px;
  border: 1px solid var(--lp-primary);
  color: var(--lp-primary);
  background: transparent;
  border-radius: 18px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap
}

.lp-suggestions button:hover {
  background: var(--lp-gradient);
  color: var(--lp-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 41, 83, 0.15)
}

.lp-suggestions button:active {
  transform: translateY(0) scale(.95)
}

.lp-suggestion-whatsapp {
  border-color: #25D366 !important;
  color: #25D366 !important;
  background: transparent
}

.lp-suggestion-whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3)
}


.lp-input-area {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  flex-shrink: 0;
  gap: 8px
}

.lp-input-area input {
  flex: 1;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 13px;
  outline: none;
  transition: border .2s, box-shadow .2s;
  font-family: var(--lp-font);
  min-height: 40px;
  background: #fafbfc
}

.lp-input-area input:focus {
  border-color: var(--lp-secondary);
  box-shadow: 0 0 0 3px rgba(246, 162, 30, 0.15);
  background: var(--lp-white)
}


.lp-input-area input::placeholder {
  color: var(--lp-gray);
  font-weight: 400
}

.lp-input-area button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-gradient);
  color: var(--lp-secondary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  flex-shrink: 0
}

.lp-input-area button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(22, 41, 83, 0.25)
}

.lp-input-area button:active {
  transform: scale(.95)
}


.lp-input-area button svg {
  width: 18px;
  height: 18px;
  fill: var(--lp-secondary)
}

.lp-footer {
  padding: 6px 12px;
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  text-align: center;
  font-size: 10px;
  color: var(--lp-gray);
  flex-shrink: 0
}

.lp-footer a {
  color: var(--lp-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s
}

.lp-footer a:hover {
  color: var(--lp-secondary)
}

.lp-live-agent .lp-la-title {
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 3px;
  color: var(--lp-primary)
}

.lp-live-agent .lp-la-sub {
  font-size: 12px;
  margin: 0 0 10px;
  color: var(--lp-gray)
}

.lp-la-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  box-sizing: border-box
}

.lp-la-btn:last-child {
  margin-bottom: 0
}

.lp-la-btn svg {
  flex-shrink: 0
}

.lp-la-btn span {
  flex: 1
}

.lp-la-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3)
}

.lp-la-whatsapp svg {
  fill: #fff
}

.lp-la-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe57 0%, #0f7c6e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .4)
}

.lp-la-call {
  background: var(--lp-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(22, 41, 83, 0.25)
}

.lp-la-call svg {
  fill: var(--lp-secondary)
}

.lp-la-call:hover {
  background: linear-gradient(135deg, #1e3a6e 0%, #162953 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 41, 83, .35)
}

/* ── Responsive: Tablets ── */
@media(max-width:768px) {
  .lapeng-chatbot-window {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 84px;
    height: 460px;
    border-radius: var(--lp-radius-sm)
  }

  .lp-header {
    padding: 10px 12px
  }

  .lp-header .avatar {
    width: 32px;
    height: 32px
  }

  .lp-header .info h4 {
    font-size: 13px
  }

  .lp-messages {
    padding: 10px
  }

  .lp-suggestions {
    padding: 8px 10px;
    gap: 5px
  }

  .lp-suggestions button {
    padding: 5px 10px;
    font-size: 10px
  }

  .lp-input-area {
    padding: 8px 10px
  }

  .lp-input-area input {
    padding: 8px 12px;
    font-size: 16px
  }

  .lp-input-area button {
    width: 36px;
    height: 36px
  }
}

/* ── Responsive: Mobile phones ── */
@media(max-width:480px) {
  .lapeng-chatbot-toggle {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px
  }

  .lapeng-chatbot-toggle svg {
    width: 24px;
    height: 24px
  }

  .lp-notif {
    bottom: 90px;
    right: 12px;
    left: 12px;
    max-width: none;
    border-radius: var(--lp-radius);
    padding: 14px 16px;
    gap: 12px;
    box-shadow: var(--lp-shadow-lg), 0 4px 20px rgba(246, 162, 30, 0.15)
  }

  .lp-notif-avatar {
    width: 40px;
    height: 40px
  }

  .lp-notif-text strong {
    font-size: 13px
  }

  .lp-notif-text span {
    font-size: 11px
  }

  .lp-notif-close {
    width: 28px;
    height: 28px;
    font-size: 18px
  }

  .lapeng-chatbot-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    border: none
  }

  .lapeng-chatbot-window.open {
    transform: translateY(0) scale(1)
  }

  .lp-header {
    padding: 10px 14px;
    border-radius: 0;
    gap: 10px
  }

  .lp-header .avatar {
    width: 34px;
    height: 34px
  }

  .lp-header .info h4 {
    font-size: 14px
  }

  .lp-header .info p {
    font-size: 11px
  }

  .lp-messages {
    padding: 10px;
    gap: 8px;
    -webkit-overflow-scrolling: touch
  }

  .lp-msg {
    max-width: 88%
  }

  .lp-msg .bubble {
    padding: 8px 12px;
    font-size: 13px
  }

  .lp-suggestions {
    padding: 10px 14px;
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .lp-suggestions::-webkit-scrollbar {
    display: none
  }

  .lp-suggestions button {
    padding: 6px 12px;
    font-size: 11px;
    flex-shrink: 0;
    border-radius: 16px
  }

  .lp-input-area {
    padding: 10px 12px;
    gap: 6px;
    padding-bottom: max(10px, env(safe-area-inset-bottom))
  }

  .lp-input-area input {
    padding: 10px 14px;
    font-size: 16px;
    min-height: 44px;
    border-radius: 20px
  }

  .lp-input-area button {
    width: 40px;
    height: 40px
  }

  .lp-input-area button svg {
    width: 18px;
    height: 18px
  }

  .lp-footer {
    padding: 6px 12px;
    padding-bottom: max(6px, env(safe-area-inset-bottom))
  }

  .lp-la-btn {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 12px
  }

  .lp-la-btn svg {
    width: 18px;
    height: 18px
  }

  .lp-typing span {
    width: 6px;
    height: 6px
  }
}

/* ── Responsive: Very small phones ── */
@media(max-width:360px) {
  .lapeng-chatbot-toggle {
    width: 48px;
    height: 48px;
    bottom: 12px;
    right: 12px
  }

  .lapeng-chatbot-toggle svg {
    width: 22px;
    height: 22px
  }

  .lp-header {
    padding: 10px 12px;
    gap: 8px
  }

  .lp-header .avatar {
    width: 30px;
    height: 30px
  }

  .lp-header .info h4 {
    font-size: 13px
  }

  .lp-messages {
    padding: 8px
  }

  .lp-msg .bubble {
    padding: 7px 10px;
    font-size: 12px
  }

  .lp-suggestions button {
    padding: 5px 8px;
    font-size: 10px
  }

  .lp-input-area {
    padding: 8px 10px
  }

  .lp-input-area input {
    font-size: 16px;
    padding: 8px 12px;
    min-height: 40px
  }

  .lp-input-area button {
    width: 36px;
    height: 36px
  }

  .lp-la-btn {
    padding: 8px 12px;
    font-size: 12px
  }
}

/* ── Landscape mobile ── */
@media(max-width:768px) and (orientation:landscape) {
  .lapeng-chatbot-window {
    top: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh
  }

  .lp-header {
    padding: 10px 16px
  }

  .lp-header .avatar {
    width: 36px;
    height: 36px
  }

  .lp-messages {
    flex: 1;
    min-height: 0;
    padding: 12px
  }

  .lp-input-area {
    padding: 8px 12px
  }

  .lp-input-area button {
    width: 40px;
    height: 40px
  }
}

/* ── Dark mode support ── */
@media(prefers-color-scheme: dark) {
  .lapeng-chatbot-window {
    background: #1a1a2e;
    border-color: rgba(246, 162, 30, 0.2)
  }

  .lp-messages {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%)
  }

  .lp-messages::before {
    background: linear-gradient(180deg, rgba(246, 162, 30, 0.08) 0%, transparent 100%)
  }

  .lp-msg.bot .bubble {
    background: #1f2940;
    color: #e8e8e8;
    border-color: rgba(246, 162, 30, 0.15)
  }

  .lp-msg .time {
    color: rgba(255, 255, 255, 0.5)
  }

  .lp-suggestions {
    background: #1a1a2e;
    border-color: rgba(246, 162, 30, 0.15)
  }

  .lp-suggestions button {
    border-color: var(--lp-secondary);
    color: var(--lp-secondary)
  }

  .lp-input-area {
    background: #1a1a2e;
    border-color: rgba(246, 162, 30, 0.15)
  }

  .lp-input-area input {
    background: #16213e;
    border-color: rgba(246, 162, 30, 0.2);
    color: #e8e8e8
  }

  .lp-input-area input:focus {
    background: #16213e;
    border-color: var(--lp-secondary);
    box-shadow: 0 0 0 3px rgba(246, 162, 30, 0.25);
    color: #e8e8e8
  }

  .lp-input-area input::placeholder {
    color: rgba(255, 255, 255, 0.4)
  }

  .lp-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-color: rgba(246, 162, 30, 0.15);
    color: rgba(255, 255, 255, 0.6)
  }

  .lp-footer a {
    color: var(--lp-secondary)
  }

  .lp-typing {
    background: #1f2940;
    border-color: rgba(246, 162, 30, 0.15)
  }

  .lp-notif {
    background: #1a1a2e;
    border-color: rgba(246, 162, 30, 0.2)
  }

  .lp-notif-text strong {
    color: #e8e8e8
  }

  .lp-notif-text span {
    color: rgba(255, 255, 255, 0.6)
  }

  .lp-live-agent .lp-la-title {
    color: #e8e8e8
  }

  .lp-live-agent .lp-la-sub {
    color: rgba(255, 255, 255, 0.6)
  }
}