.jq-help-widget {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  }

  /* Bong bóng lời mời */
  .jq-help-bubble {
    background: #111a2b;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px 12px;
    max-width: 220px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    line-height: 1.4;
    font-size: 14px;
    animation: jqFloat 3s ease-in-out infinite;
    transform-origin: bottom right;
    transition: opacity .2s ease, transform .2s ease;
    position: relative;
    user-select: none;
	text-align:left;
  }
  /* “đuôi” bong bóng */
  .jq-help-bubble::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: 12px;
    width: 12px; height: 12px;
    background: #111a2b;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transform: rotate(315deg);
    box-shadow: 4px 4px 12px rgba(0,0,0,.15);
  }
  @keyframes jqFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
  }

  /* Nút icon hình tròn */
  .jq-help-button {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    background: radial-gradient(circle at 30% 30%, #8f9bff, #5b6bff);
    box-shadow: 0 12px 28px rgba(44,56,255,.35), inset 0 0 18px rgba(255,255,255,.25);
    display: grid; place-items: center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease;
  }
  .jq-help-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(44,56,255,.45), inset 0 0 22px rgba(255,255,255,.32);
  }
  .jq-help-button svg {
    width: 26px; height: 26px;
    fill: none; stroke: white; stroke-width: 2;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.3));
  }

  /* Rê chuột vào icon hoặc bong bóng -> bong bóng biến mất */
  .jq-help-widget:hover .jq-help-bubble,
  .jq-help-button:focus + .jq-help-bubble {
    opacity: 0;
    transform: translateY(8px) scale(.98);
    pointer-events: none;
  }

  /* Tối ưu trên mobile: thu nhỏ */
  @media (max-width: 640px) {
    .jq-help-bubble { max-width: 180px; font-size: 13px; }
    .jq-help-button { width: 52px; height: 52px; }
    .jq-help-button svg { width: 24px; height: 24px; }
  }

  
  .cc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 73%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    font-family: Goldman;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20vh;
    inset: 0;
    backdrop-filter: blur(5px);
}

.cc-box {
    background: rgb(0 0 0 / 70%);
    padding: 12px;
    border-radius: 7px;
    animation: fadeIn 0.2s ease;
    color: white;
    border-top: 3px solid #FFC107;
    border-bottom: 10px solid #F44336;
    backdrop-filter: blur(10px);
    width: fit-content;
    max-width: 500px;
    min-width: 260px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.cc-message {
  margin-bottom: 20px;
  font-size: 16px;
  white-space: pre-line;
  max-width: 100%;
  word-break: break-word;
}

.cc-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cc-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cc-btn.ok {
  background: #007bff;
  color: white;
}

.cc-btn.cancel {
  background: #ddd;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}