
:root {
  --cc-yellow: #ffd21a;
  --cc-yellow-soft: rgba(255, 210, 26, 0.14);
  --cc-yellow-line: rgba(255, 210, 26, 0.85);
  --cc-panel: #111317;
  --cc-panel-2: #191c21;
  --cc-panel-3: #22262d;
  --cc-muted: #9ca0a7;
  --cc-brand: #da642a;
}

.cc-chat-launcher {
  position: fixed;
  z-index: 1005;
  bottom: 24px;
  right: 24px;
  display: none !important; 
  align-items: center;
  gap: 10px;
  background: rgba(18, 20, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--cc-yellow-line);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 210, 26, 0.22);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.cc-chat-launcher.visible {
  display: flex !important;
}

.cc-chat-launcher:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--cc-yellow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 210, 26, 0.35);
}

.cc-chat-launcher .cc-launcher-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  border: 1.5px solid var(--cc-yellow);
}

.cc-chat-launcher .cc-launcher-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed66b;
  box-shadow: 0 0 10px rgba(46, 214, 107, 0.8);
}

.cc-chat-shell {
  position: fixed;
  z-index: 1000;
  bottom: 84px;
  right: 24px;
  width: min(430px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  height: min(650px, calc(100vh - 110px));
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cc-yellow-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 211, 31, 0.11), transparent 28%),
    linear-gradient(155deg, #17191c, #0d0e11);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5), 0 0 34px rgba(255, 201, 17, 0.15);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.cc-chat-shell.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cc-chat-header {
  flex: 0 0 auto;
  min-height: 84px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 210, 26, 0.15);
  background: rgba(22, 25, 29, 0.95);
  backdrop-filter: blur(12px);
}

.cc-avatar-wrap {
  position: relative;
  flex: 0 0 auto;
}

.cc-avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cc-yellow);
  border-radius: 50%;
  background: radial-gradient(circle, #22252a 35%, #090a0c 36%);
  box-shadow: 0 0 0 5px rgba(255, 210, 26, 0.08);
  overflow: hidden;
}

.cc-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cc-avatar-notification {
  position: absolute;
  right: -3px;
  top: -3px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 2px solid #15171a;
  border-radius: 50%;
  color: #16120a;
  background: var(--cc-yellow);
  font-size: 10px;
  font-weight: 900;
}

.cc-admin-copy {
  min-width: 0;
  flex: 1;
}

.cc-admin-copy h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.cc-admin-copy p {
  margin: 3px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b5b8bd;
  font-size: 12px;
}

.cc-admin-copy p span.cc-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed66b;
  box-shadow: 0 0 12px rgba(46, 214, 107, 0.7);
}

.cc-close-button {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #d3d5d9;
  background: rgba(255, 255, 255, 0.05);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.cc-close-button:hover {
  color: #151109;
  background: var(--cc-yellow);
  transform: rotate(90deg);
}

.cc-widget-body {
  min-height: 0;
  flex: 1;
  padding: 16px 18px 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffd21a rgba(15, 18, 24, 0.6);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cc-widget-body::-webkit-scrollbar,
.cc-transcript::-webkit-scrollbar,
.cc-live-transcript::-webkit-scrollbar,
.cc-question-list::-webkit-scrollbar {
  width: 6px;
}

.cc-widget-body::-webkit-scrollbar-track,
.cc-transcript::-webkit-scrollbar-track,
.cc-live-transcript::-webkit-scrollbar-track,
.cc-question-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
}

.cc-widget-body::-webkit-scrollbar-thumb,
.cc-transcript::-webkit-scrollbar-thumb,
.cc-live-transcript::-webkit-scrollbar-thumb,
.cc-question-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffe066 0%, #ffd21a 50%, #e5a900 100%);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 210, 26, 0.5);
}

.cc-welcome-card {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.cc-welcome-card .cc-wave {
  font-size: 24px;
}

.cc-welcome-card strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.cc-welcome-card p {
  margin: 3px 0 0;
  color: #aeb1b7;
  font-size: 11.5px;
}

.cc-transcript {
  max-height: 220px;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 210, 26, 0.15);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  scroll-behavior: smooth;
}

.cc-bubble {
  max-width: 88%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 11.5px;
  line-height: 1.48;
  animation: cc-bubble-in 0.2s ease both;
  word-break: break-word;
}

.cc-bubble.user {
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  color: #17120a;
  background: var(--cc-yellow);
  font-weight: 600;
}

.cc-bubble.bot,
.cc-bubble.admin {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 3px;
  color: #e2e4e9;
  background: #23262d;
}

.cc-bubble-meta {
  display: flex;
  justify-content: flex-end;
  font-size: 9px;
  opacity: 0.65;
  margin-top: 3px;
}

.cc-typing {
  width: 50px;
  padding: 8px 12px;
  display: flex;
  gap: 4px;
  border-radius: 12px;
  background: #25272c;
  align-self: flex-start;
}

.cc-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cc-yellow);
  animation: cc-typing 1s infinite;
}
.cc-typing i:nth-child(2) { animation-delay: 0.16s; }
.cc-typing i:nth-child(3) { animation-delay: 0.32s; }

.cc-question-block {
  margin-top: 4px;
}

.cc-section-label {
  display: block;
  margin-bottom: 8px;
  color: #c7c9ce;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cc-question-list {
  display: grid;
  gap: 8px;
}

.cc-question-list.expanded {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

.cc-question-button {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 210, 26, 0.6);
  border-radius: 14px;
  color: #ffdc54;
  background: linear-gradient(115deg, rgba(255, 210, 26, 0.11), rgba(255, 210, 26, 0.035));
  font-size: 11.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}

.cc-question-button b {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.cc-question-button:hover {
  transform: translateX(3px);
  border-color: var(--cc-yellow);
  color: #15110a;
  background: var(--cc-yellow);
  box-shadow: 0 8px 20px rgba(255, 210, 26, 0.2);
}

.cc-question-button:hover b {
  color: #15110a;
}

.cc-more-button {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #bdbfc5;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.cc-more-button:hover {
  border-color: rgba(255, 210, 26, 0.55);
  color: var(--cc-yellow);
}

.cc-message-field {
  position: relative;
  display: block;
}

.cc-message-field textarea {
  width: 100%;
  min-height: 72px;
  max-height: 120px;
  resize: vertical;
  padding: 12px 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  outline: none;
  color: white;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  font-size: 12px;
  line-height: 1.45;
  transition: 0.2s;
}

.cc-message-field textarea::placeholder {
  color: #777a81;
}

.cc-message-field textarea:focus {
  border-color: var(--cc-yellow);
  box-shadow: 0 0 0 3px rgba(255, 210, 26, 0.1);
}

.cc-message-field small {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #8f9298;
  font-size: 9.5px;
}

.cc-pending-card {
  padding: 14px 16px;
  border: 1px solid #ffd21a;
  border-radius: 16px;
  background: rgba(255, 210, 26, 0.07);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: cc-bubble-in 0.25s ease both;
}

.cc-pending-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd21a;
  font-size: 13px;
  font-weight: 800;
}

.cc-pending-card-desc {
  margin: 6px 0 0;
  color: #e5b810;
  font-size: 11.5px;
  line-height: 1.5;
}

.cc-fallback-wa-card {
  padding: 12px 14px;
  border: 1px solid rgba(40, 214, 108, 0.4);
  border-radius: 14px;
  background: rgba(34, 184, 91, 0.08);
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-fallback-wa-card p {
  margin: 0;
  font-size: 11px;
  color: #a7f3d0;
  line-height: 1.4;
}

.cc-fallback-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #22b85b;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cc-fallback-wa-btn:hover {
  background: #149542;
}

.cc-live-chat-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  gap: 10px;
}

.cc-live-transcript {
  flex: 1;
  min-height: 180px;
  max-height: 320px;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.cc-bubble img.cc-bubble-image {
  max-width: 100%;
  max-height: 220px;
  border-radius: 12px;
  margin-top: 6px;
  cursor: pointer;
  object-fit: cover;
  border: 1px solid rgba(255, 210, 26, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.cc-bubble img.cc-bubble-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 210, 26, 0.25);
}

.cc-image-preview-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 25, 30, 0.95);
  border: 1px solid rgba(255, 210, 26, 0.35);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11.5px;
  color: #ffd21a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: cc-preview-fade-in 0.2s ease-out;
}

@keyframes cc-preview-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cc-preview-thumb-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 26, 0.4);
  flex-shrink: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-preview-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-preview-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cc-preview-filename {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11.5px;
}

.cc-preview-filesize {
  font-size: 10px;
  color: #94a3b8;
}

.cc-preview-remove-btn {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cc-preview-remove-btn:hover {
  background: #ef4444;
  color: #ffffff;
  transform: scale(1.1);
}

.cc-chat-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cc-chat-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.cc-chat-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 210, 26, 0.2);
  border: 1px solid rgba(255, 210, 26, 0.3);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-chat-lightbox.active img {
  transform: scale(1);
}

.cc-chat-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cc-chat-lightbox-close:hover {
  background: rgba(239, 68, 68, 0.8);
  transform: scale(1.1);
}

.cc-widget-footer {
  flex: 0 0 auto;
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 6, 8, 0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-select-hint {
  margin: 0;
  color: #858991;
  font-size: 10px;
  text-align: center;
}

.cc-channel-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-channel-picker > p {
  margin: 0;
  color: #aeb1b6;
  font-size: 10px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.cc-channel-picker > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cc-live-button,
.cc-whatsapp-button,
.cc-send-button {
  min-height: 44px;
  border-radius: 12px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.2s;
}

.cc-live-button {
  border: 1px solid var(--cc-yellow);
  background: rgba(255, 210, 26, 0.08);
  color: #ffd21a;
}

.cc-live-button:hover {
  color: #161108;
  background: var(--cc-yellow);
  box-shadow: 0 8px 20px rgba(255, 210, 26, 0.2);
}

.cc-whatsapp-button {
  border: 1px solid #28d66c;
  background: linear-gradient(135deg, #22b85b, #149542);
  box-shadow: 0 8px 20px rgba(20, 149, 66, 0.2);
}

.cc-whatsapp-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.cc-live-send-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cc-back-button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s;
}

.cc-back-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cc-live-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.cc-live-input-wrap input {
  width: 100%;
  height: 38px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 11.5px;
}

.cc-live-input-wrap input:focus {
  border-color: var(--cc-yellow);
}

.cc-attach-btn {
  position: absolute;
  right: 6px;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: #9ca0a7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cc-attach-btn:hover {
  color: #fff;
}

.cc-send-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  color: #161108;
  background: var(--cc-yellow);
  box-shadow: 0 8px 20px rgba(255, 210, 26, 0.2);
  flex-shrink: 0;
}

.cc-send-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cc-send-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 210, 26, 0.3);
}

.cc-response-note {
  margin: 4px 0 0;
  display: block;
  color: #96999f;
  font-size: 9px;
  text-align: center;
}

.cc-response-note span {
  margin-right: 4px;
  color: var(--cc-yellow);
}

@keyframes cc-bubble-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

@keyframes cc-typing {
  0%, 70%, 100% { opacity: 0.28; transform: translateY(0); }
  35% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 768px) {
  .cc-chat-launcher {
    bottom: calc(var(--mnav-h, 64px) + 12px) !important;
    left: 14px !important;
    right: auto !important;
    padding: 7px 13px !important;
    font-size: 12px !important;
    z-index: 1005 !important;
    border-radius: 999px !important;
  }

  .cc-chat-launcher img {
    width: 20px !important;
    height: 20px !important;
  }

  .cc-chat-launcher.visible {
    display: flex !important;
  }
  
  .cc-chat-shell {
    left: 14px !important;
    right: 14px !important;
    bottom: calc(var(--mnav-h, 64px) + 62px) !important;
    width: auto !important;
    max-width: 365px !important;
    margin: 0 auto !important;
    height: min(480px, calc(100vh - var(--mnav-h, 64px) - 78px)) !important;
    max-height: 480px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 28px rgba(255, 201, 17, 0.14) !important;
    z-index: 1010 !important;
  }

  .cc-chat-header {
    min-height: 56px !important;
    padding: 10px 14px !important;
    gap: 10px !important;
  }

  .cc-avatar {
    width: 36px !important;
    height: 36px !important;
    border-width: 1.5px !important;
  }

  .cc-avatar img {
    width: 22px !important;
    height: 22px !important;
  }

  .cc-avatar-notification {
    width: 16px !important;
    height: 16px !important;
    font-size: 9px !important;
    top: -2px !important;
    right: -2px !important;
  }

  .cc-admin-copy h2 {
    font-size: 13.5px !important;
    letter-spacing: -0.01em !important;
  }

  .cc-admin-copy p {
    font-size: 10.5px !important;
    margin-top: 1px !important;
    gap: 5px !important;
  }

  .cc-admin-copy p span.cc-online-dot {
    width: 6px !important;
    height: 6px !important;
  }

  .cc-close-button {
    width: 30px !important;
    height: 30px !important;
    font-size: 18px !important;
  }

  .cc-widget-body {
    padding: 10px 12px 8px !important;
    gap: 10px !important;
  }

  .cc-welcome-card {
    padding: 8px 12px !important;
    gap: 10px !important;
    border-radius: 12px !important;
  }

  .cc-welcome-card .cc-wave {
    font-size: 18px !important;
  }

  .cc-welcome-card strong {
    font-size: 12px !important;
  }

  .cc-welcome-card p {
    font-size: 10.5px !important;
    margin-top: 2px !important;
  }

  .cc-transcript {
    max-height: 130px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    gap: 6px !important;
  }

  .cc-bubble {
    padding: 7px 10px !important;
    font-size: 11px !important;
    border-radius: 12px !important;
    line-height: 1.4 !important;
  }

  .cc-section-label {
    font-size: 9.5px !important;
    margin-bottom: 5px !important;
  }

  .cc-question-list {
    gap: 6px !important;
  }

  .cc-question-button {
    min-height: 36px !important;
    padding: 7px 11px !important;
    font-size: 10.5px !important;
    border-radius: 10px !important;
    gap: 8px !important;
  }

  .cc-question-button b {
    font-size: 16px !important;
  }

  .cc-more-button {
    min-height: 32px !important;
    padding: 6px 10px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    margin-top: 6px !important;
  }

  .cc-question-list.expanded {
    max-height: 130px !important;
  }

  .cc-message-field textarea {
    min-height: 52px !important;
    padding: 8px 10px 20px !important;
    font-size: 11px !important;
    border-radius: 10px !important;
  }

  .cc-widget-footer {
    padding: 8px 12px 10px !important;
    gap: 6px !important;
  }

  .cc-channel-picker {
    gap: 6px !important;
  }

  .cc-channel-picker > p {
    font-size: 9.5px !important;
  }

  .cc-channel-picker > div {
    gap: 6px !important;
  }

  .cc-live-button,
  .cc-whatsapp-button {
    min-height: 36px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    gap: 4px !important;
  }

  .cc-response-note {
    font-size: 8.5px !important;
    margin-top: 2px !important;
  }

  
  .cc-live-transcript {
    min-height: 130px !important;
    max-height: 200px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
  }

  .cc-back-button {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
  }

  .cc-live-input-wrap input {
    height: 32px !important;
    font-size: 11px !important;
    padding: 0 28px 0 10px !important;
    border-radius: 8px !important;
  }

  .cc-send-button {
    min-height: 32px !important;
    font-size: 10px !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
  }

  .cc-pending-card {
    padding: 8px 11px !important;
    border-radius: 12px !important;
  }

  .cc-pending-card-title {
    font-size: 11.5px !important;
  }

  .cc-pending-card-desc {
    font-size: 10.5px !important;
  }
}

.cc-bubble-wa-card {
  margin-top: 8px;
  padding-top: 4px;
}

.cc-bubble-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 8px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.cc-bubble-wa-btn:hover {
  transform: translateY(-1.5px) scale(1.02);
  background: linear-gradient(135deg, #28e06d, #149c8c);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  color: #ffffff !important;
}

.cc-bubble-wa-btn:active {
  transform: translateY(0) scale(0.98);
}

.cc-bubble-wa-btn .cc-wa-svg {
  flex-shrink: 0;
  fill: currentColor;
}
