/* ============================================================
   Haness Consult Group — Global UI (theme, widgets, animations)
   Loaded on every public page via the shared navbar/footer.
   ============================================================ */

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Theme switch transition (enabled briefly while toggling) */
html.theme-anim,
html.theme-anim *,
html.theme-anim *::before,
html.theme-anim *::after {
    transition: background-color 0.45s ease, color 0.45s ease,
        border-color 0.45s ease, box-shadow 0.45s ease !important;
}

/* ============================================================
   DARK MODE
   The site uses CDN Tailwind with a light Material palette baked
   into each page. `.dark` overrides the generated utilities below.
   ============================================================ */
.dark {
    color-scheme: dark;
}

/* ----- Backgrounds ----- */
.dark .bg-surface,
.dark .bg-background {
    background-color: #141218;
}
.dark .bg-surface-dim {
    background-color: #141218;
}
.dark .bg-surface-bright {
    background-color: #3b383f;
}
.dark .bg-surface-container-lowest {
    background-color: #0f0d13;
}
.dark .bg-surface-container-lowest\/95 {
    background-color: rgba(15, 13, 19, 0.95);
}
.dark .bg-surface-container-low {
    background-color: #1c1b22;
}
.dark .bg-surface-container {
    background-color: #211f26;
}
.dark .bg-surface-container-high {
    background-color: #2b2930;
}
.dark .bg-surface-container-highest {
    background-color: #36343b;
}
.dark .bg-surface-variant {
    background-color: #49454f;
}
.dark .bg-white {
    background-color: #211f26;
}
.dark .bg-white\/80 {
    background-color: rgba(33, 31, 38, 0.8);
}
.dark .bg-outline\/20 {
    background-color: rgba(147, 143, 153, 0.22);
}
.dark .bg-primary {
    background-color: #70248e;
}
.dark .bg-brand-purple {
    background-color: #8b3fa8;
}
.dark .bg-secondary-fixed {
    background-color: #cbc2db;
}
.dark .bg-executive-gold,
.dark .bg-premium-gold {
    background-color: #c4973e;
}
.dark .bg-inverse-surface {
    background-color: #e6e0e9;
}

/* ----- Text ----- */
.dark .text-on-surface,
.dark .text-on-background {
    color: #e6e0e9;
}
.dark .text-on-surface-variant {
    color: #cac4d0;
}
.dark .text-on-surface-variant\/60 {
    color: rgba(202, 196, 208, 0.6);
}
.dark .text-primary {
    color: #d0bcff;
}
.dark .text-brand-purple {
    color: #d0bcff;
}
.dark .text-secondary {
    color: #cbc2db;
}
.dark .text-outline {
    color: #938f99;
}
.dark .text-outline\/60 {
    color: rgba(147, 143, 153, 0.6);
}
.dark .text-on-primary {
    color: #ffffff;
}
.dark .text-on-primary-container {
    color: #eaddff;
}
.dark .text-on-secondary-container {
    color: #e8def8;
}
.dark .text-on-secondary-fixed {
    color: #1d192b;
}
.dark .text-inverse-on-surface {
    color: #322f35;
}
.dark .text-inverse-on-surface\/80 {
    color: rgba(50, 47, 53, 0.8);
}
.dark .text-on-secondary {
    color: #332d41;
}
.dark .text-executive-gold,
.dark .text-premium-gold {
    color: #c4973e;
}

/* ----- Borders ----- */
.dark .border-outline\/5 {
    border-color: rgba(147, 143, 153, 0.08);
}
.dark .border-outline\/10 {
    border-color: rgba(147, 143, 153, 0.12);
}
.dark .border-outline\/20 {
    border-color: rgba(147, 143, 153, 0.2);
}
.dark .border-outline\/30 {
    border-color: rgba(147, 143, 153, 0.3);
}
.dark .border-outline\/40 {
    border-color: rgba(147, 143, 153, 0.4);
}
.dark .border-outline-variant\/20 {
    border-color: rgba(73, 69, 79, 0.6);
}
.dark .border-outline-variant\/30 {
    border-color: rgba(73, 69, 79, 0.7);
}
.dark .border-outline-variant {
    border-color: #49454f;
}
.dark .border-primary {
    border-color: #d0bcff;
}
.dark .border-primary\/40 {
    border-color: rgba(208, 188, 255, 0.4);
}
.dark .border-secondary {
    border-color: #cbc2db;
}
.dark .border-brand-purple {
    border-color: #d0bcff;
}
.dark .border-inverse-on-surface\/30 {
    border-color: rgba(50, 47, 53, 0.3);
}

/* ----- Hover states ----- */
.dark .hover\:bg-surface-container-high:hover {
    background-color: #2b2930;
}
.dark .hover\:bg-white:hover {
    background-color: #2b2930;
}
.dark .hover\:bg-primary:hover {
    background-color: #8b3fa8;
}
.dark .hover\:bg-primary-container:hover {
    background-color: #4f378b;
}
.dark .hover\:bg-secondary:hover {
    background-color: #4a4458;
}
.dark .hover\:bg-secondary-container:hover {
    background-color: #4a4458;
}
.dark .hover\:bg-secondary-fixed:hover {
    background-color: #e8def8;
}
.dark .hover\:bg-brand-purple:hover {
    background-color: #8b3fa8;
}
.dark .hover\:text-primary:hover {
    color: #d0bcff;
}
.dark .hover\:text-secondary:hover {
    color: #cbc2db;
}
.dark .hover\:text-brand-purple:hover {
    color: #d0bcff;
}
.dark .hover\:border-primary:hover {
    border-color: #d0bcff;
}
.dark .hover\:shadow-primary:hover {
    --tw-shadow-color: rgba(208, 188, 255, 0.3);
}
.dark .hover\:shadow-primary\/20:hover {
    --tw-shadow-color: rgba(208, 188, 255, 0.2);
}
.dark .hover\:shadow-primary\/30:hover {
    --tw-shadow-color: rgba(208, 188, 255, 0.3);
}
.dark .hover\:shadow-brand-purple\/20:hover {
    --tw-shadow-color: rgba(208, 188, 255, 0.2);
}
.dark .hover\:shadow-brand-purple\/30:hover {
    --tw-shadow-color: rgba(208, 188, 255, 0.3);
}

/* ----- Article prose content (insight / resource body) ----- */
.dark .prose-content {
    color: #cac4d0;
}
.dark .prose-content h1,
.dark .prose-content h2,
.dark .prose-content h3,
.dark .prose-content h4,
.dark .prose-content strong {
    color: #e6e0e9;
}
.dark .prose-content a {
    color: #d0bcff;
}
.dark .prose-content blockquote {
    color: #e6e0e9;
    border-left-color: #f0bf62;
}
.dark .prose-content ul li::marker,
.dark .prose-content ol li::marker {
    color: #f0bf62;
}
.dark .prose-content hr {
    border-color: rgba(147, 143, 153, 0.25);
}
.dark .prose-content table {
    border-color: rgba(147, 143, 153, 0.25);
    color: #e6e0e9;
}

/* ----- Custom per-page pattern classes ----- */
.dark .slate-border {
    border-color: rgba(147, 143, 153, 0.22);
}
.dark .glass-header {
    background: rgba(33, 31, 38, 0.8);
}
.dark .hero-pattern-light {
    background-color: #1c1b22;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(240, 191, 98, 0.14) 1.2px, transparent 1.2px),
        radial-gradient(circle at 1px 1px, rgba(208, 188, 255, 0.06) 1.2px, transparent 1.2px),
        repeating-linear-gradient(45deg, rgba(208, 188, 255, 0.03) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(-45deg, rgba(240, 191, 98, 0.03) 0 1px, transparent 1px 28px);
    background-size: 26px 26px, 26px 26px, 100% 100%, 100% 100%;
    background-position: 13px 13px, 0 0, 0 0, 0 0;
}
.dark .surface-pattern {
    background-color: transparent;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(240, 191, 98, 0.14) 1.2px, transparent 1.2px),
        radial-gradient(circle at 1px 1px, rgba(208, 188, 255, 0.06) 1.2px, transparent 1.2px),
        repeating-linear-gradient(45deg, rgba(208, 188, 255, 0.03) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(-45deg, rgba(240, 191, 98, 0.03) 0 1px, transparent 1px 28px);
    background-size: 26px 26px, 26px 26px, 100% 100%, 100% 100%;
    background-position: 13px 13px, 0 0, 0 0, 0 0;
}

/* Form controls in dark mode */
.dark input,
.dark textarea,
.dark select {
    color: #e6e0e9;
    caret-color: #d0bcff;
}
.dark input::placeholder,
.dark textarea::placeholder {
    color: rgba(202, 196, 208, 0.6);
}
.dark .bg-surface-container-lowest input,
.dark .bg-surface-container-lowest select,
.dark .bg-surface-container-lowest textarea,
.dark .bg-surface-container-low input,
.dark .bg-surface-container-low select,
.dark .bg-surface-container-low textarea {
    background-color: #0f0d13;
}

/* ============================================================
   GLOBAL SEARCH MODAL
   ============================================================ */
.hc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12vh 20px 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.hc-modal.is-open {
    visibility: visible;
    opacity: 1;
}
.hc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 12, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hc-modal-panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    transform: translateY(-16px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hc-modal.is-open .hc-modal-panel {
    transform: translateY(0) scale(1);
}
.hc-search-box {
    background: var(--hc-search-bg, #ffffff);
    border: 1px solid rgba(128, 115, 129, 0.18);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}
.dark .hc-search-box {
    --hc-search-bg: #1c1b22;
    border-color: rgba(147, 143, 153, 0.2);
}
.hc-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(128, 115, 129, 0.14);
}
.dark .hc-search-form {
    border-bottom-color: rgba(147, 143, 153, 0.14);
}
.hc-search-form > i {
    color: #70248e;
    font-size: 18px;
}
.dark .hc-search-form > i {
    color: #d0bcff;
}
.hc-search-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 17px;
    font-family: "Manrope", system-ui, sans-serif;
    color: #1a1c1c;
}
.dark .hc-search-form input {
    color: #e6e0e9;
}
.hc-search-form kbd,
.hc-kbd {
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(128, 115, 129, 0.25);
    background: rgba(128, 115, 129, 0.08);
    color: #4e4350;
    white-space: nowrap;
}
.dark .hc-search-form kbd,
.dark .hc-kbd {
    border-color: rgba(147, 143, 153, 0.3);
    background: rgba(147, 143, 153, 0.1);
    color: #cac4d0;
}
.hc-search-meta {
    padding: 12px 20px;
    font-size: 12px;
    color: #4e4350;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dark .hc-search-meta {
    color: #cac4d0;
}
.hc-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0 20px 18px;
}
.hc-quick-links > span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4e4350;
    margin-right: 4px;
}
.dark .hc-quick-links > span {
    color: #cac4d0;
}
.hc-quick-links a {
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 9999px;
    background: rgba(112, 36, 142, 0.08);
    color: #70248e;
    transition: all 0.25s ease;
}
.dark .hc-quick-links a {
    background: rgba(208, 188, 255, 0.1);
    color: #d0bcff;
}
.hc-quick-links a:hover {
    background: #70248e;
    color: #ffffff;
    transform: translateY(-1px);
}
.dark .hc-quick-links a:hover {
    background: #d0bcff;
    color: #381e72;
}

/* ============================================================
   AI CHAT WIDGET
   ============================================================ */
.hc-chat-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}
.hc-chat-toggle {
    width: 58px;
    height: 58px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #70248e, #8b3fa8);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(112, 36, 142, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.hc-chat-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 32px rgba(112, 36, 142, 0.55);
}
.hc-chat-toggle.is-open .hc-chat-toggle-icon {
    transform: rotate(90deg) scale(0);
    opacity: 0;
}
.hc-chat-toggle.is-open .hc-chat-toggle-close {
    transform: rotate(0) scale(1);
    opacity: 1;
}
.hc-chat-toggle-icon,
.hc-chat-toggle-close {
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hc-chat-toggle-close {
    transform: rotate(-90deg) scale(0);
    opacity: 0;
}
.hc-chat-toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(240, 191, 98, 0.6);
    animation: hc-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}
.hc-chat-widget.is-open .hc-chat-toggle::after {
    animation: none;
    opacity: 0;
}
@keyframes hc-ping {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    70%,
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.hc-chat-panel {
    width: min(92vw, 380px);
    height: min(72vh, 520px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(128, 115, 129, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: hc-chat-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.dark .hc-chat-panel {
    background: #1c1b22;
    border-color: rgba(147, 143, 153, 0.2);
}
@keyframes hc-chat-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.hc-chat-panel[hidden] {
    display: none;
}
.hc-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #70248e, #8b3fa8);
    color: #ffffff;
}
.hc-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.hc-chat-header h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.hc-chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}
.hc-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: hc-dot 1.6s infinite;
}
@keyframes hc-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}
.hc-chat-close {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hc-chat-close:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: rotate(90deg);
}
.hc-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
}
.hc-msg {
    max-width: 84%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.5;
    animation: hc-msg-in 0.3s ease;
    white-space: pre-wrap;
    word-wrap: break-word;
}
@keyframes hc-msg-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hc-msg-bot {
    align-self: flex-start;
    background: rgba(112, 36, 142, 0.08);
    color: #1a1c1c;
    border-bottom-left-radius: 4px;
}
.dark .hc-msg-bot {
    background: rgba(208, 188, 255, 0.1);
    color: #e6e0e9;
}
.hc-msg-user {
    align-self: flex-end;
    background: #70248e;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}
.hc-msg a {
    color: #70248e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.dark .hc-msg a {
    color: #d0bcff;
}
.hc-typing {
    display: inline-flex;
    gap: 4px;
    padding: 4px 2px;
}
.hc-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    animation: hc-bounce 1.2s infinite;
}
.hc-typing span:nth-child(2) {
    animation-delay: 0.15s;
}
.hc-typing span:nth-child(3) {
    animation-delay: 0.3s;
}
@keyframes hc-bounce {
    0%,
    60%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
}
.hc-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
}
.hc-chip {
    font-size: 12px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 9999px;
    border: 1px solid rgba(112, 36, 142, 0.25);
    background: transparent;
    color: #70248e;
    cursor: pointer;
    transition: all 0.25s ease;
}
.dark .hc-chip {
    border-color: rgba(208, 188, 255, 0.25);
    color: #d0bcff;
}
.hc-chip:hover {
    background: #70248e;
    color: #ffffff;
    border-color: #70248e;
}
.dark .hc-chip:hover {
    background: #d0bcff;
    color: #381e72;
    border-color: #d0bcff;
}
.hc-chat-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid rgba(128, 115, 129, 0.14);
}
.dark .hc-chat-input {
    border-top-color: rgba(147, 143, 153, 0.14);
}
.hc-chat-input input {
    flex: 1;
    border: 1px solid rgba(128, 115, 129, 0.2);
    background: #f3f3f4;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    font-family: "Manrope", system-ui, sans-serif;
    color: #1a1c1c;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dark .hc-chat-input input {
    background: #0f0d13;
    border-color: rgba(147, 143, 153, 0.25);
    color: #e6e0e9;
}
.hc-chat-input input:focus {
    border-color: #70248e;
    box-shadow: 0 0 0 3px rgba(112, 36, 142, 0.15);
}
.dark .hc-chat-input input:focus {
    border-color: #d0bcff;
    box-shadow: 0 0 0 3px rgba(208, 188, 255, 0.18);
}
.hc-chat-input button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: #70248e;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}
.dark .hc-chat-input button {
    background: #8b3fa8;
}
.hc-chat-input button:hover {
    transform: scale(1.08);
    background: #8b3fa8;
}
.hc-chat-input button:active {
    transform: scale(0.94);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.hc-back-to-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 850;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    background: #1c1b22;
    color: #f0bf62;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.3s ease, background 0.3s ease;
}
.hc-back-to-top:hover {
    background: #70248e;
    color: #ffffff;
    transform: translateY(-3px);
}
.hc-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dark .hc-back-to-top {
    background: #2b2930;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
html.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}
html.js .hc-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .hc-stagger.is-visible > * {
    opacity: 1;
    transform: none;
}

/* Body entrance */
html.js body {
    animation: hc-fade 0.5s ease;
}
@keyframes hc-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    html.js .reveal,
    html.js .hc-stagger > *,
    html.js body {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    .hc-chat-toggle::after {
        animation: none;
    }
}

/* Custom scrollbar */
.hc-chat-messages::-webkit-scrollbar {
    width: 6px;
}
.hc-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(112, 36, 142, 0.3);
    border-radius: 9999px;
}
.dark .hc-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(208, 188, 255, 0.25);
}