/**
 * Hilanaw Global FAB Styles
 *
 * !! CRITICAL DOM REQUIREMENT !!
 * .hilanaw-fab-menu-panel and .hilanaw-fab-overlay MUST be siblings of
 * .hilanaw-fab-container in the HTML — NOT children of it.
 *
 * Reason: transform: translateY(-50%) on .hilanaw-fab-container creates a new
 * CSS containing block, which breaks position: fixed on any descendant — fixed
 * children become fixed relative to the transformed ancestor instead of the
 * viewport, causing the panel to misposition.
 *
 * If a theme or page builder ever wraps .hilanaw-fab-container in a transformed,
 * filtered, or will-change ancestor, the same break will occur for the container
 * itself. In that case the transform must be moved to a wrapper element that is
 * NOT the positioning ancestor of any fixed children.
 *
 * State is toggled by JavaScript adding .fab-menu-open to <body>.
 * All open-state selectors therefore use: body.fab-menu-open #element
 *
 * @package Hilanaw_Chat_UI
 * @version 2.0.0
 */

/* ============================================
   FAB CONTAINER (button only — no panel inside)
   ============================================ */

.hilanaw-fab-container {
    position: fixed;
    right: calc(-1 * clamp(20px, 2.5vw, 26px));
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
    transition: right 0.25s ease;
}

/* On non-chat pages: hide the floating FAB tab by default.
   When the menu opens (body.fab-menu-open), show it again so the
   close button remains accessible — the header trigger has no close state. */
body:not(.hilanaw-chat-page) .hilanaw-fab-container {
    visibility: hidden;
    pointer-events: none;
}

body.fab-menu-open:not(.hilanaw-chat-page) .hilanaw-fab-container {
    visibility: visible;
    pointer-events: auto;
}

.hilanaw-fab-container:hover {
    right: clamp(1px, 0.3vw, 4px);
}

body.fab-menu-open .hilanaw-fab-container {
    right: clamp(1px, 0.3vw, 4px);
}

body {
    padding-right: 0 !important;
}

/* ============================================
   FAB BUTTON
   ============================================ */

.hilanaw-fab-button {
    width: clamp(44px, 5vw, 52px);
    height: clamp(44px, 5vw, 52px);
    border-radius: 50%;
    background: linear-gradient(135deg, #002d6e 0%, #0046a0 100%);
    border: none;
    box-shadow: 0 clamp(3px, 0.5vw, 5px) clamp(10px, 1.5vw, 14px) rgba(0, 70, 160, 0.45),
                0 2px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
}

.hilanaw-fab-button:hover {
    background: linear-gradient(135deg, #0046a0 0%, #0066cc 100%);
    box-shadow: 0 clamp(4px, 0.8vw, 8px) clamp(12px, 2vw, 18px) rgba(0, 70, 160, 0.55),
                0 3px 6px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.hilanaw-fab-button:active {
    transform: scale(0.95);
}

.hilanaw-fab-button:focus-visible {
    outline: 3px solid rgba(0, 70, 160, 0.5);
    outline-offset: 3px;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 70, 160, 0.4); }
    50%       { box-shadow: 0 4px 20px rgba(0, 70, 160, 0.8); }
}

.hilanaw-fab-button.fab-first-load {
    animation: fabPulse 1.5s ease-in-out 3;
}

/* ============================================
   FAB ICONS
   ============================================ */

.fab-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: clamp(18px, 2.5vw, 24px);
    height: clamp(18px, 2.5vw, 24px);
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.fab-icon svg {
    width: 100%;
    height: 100%;
}

.fab-icon-menu {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(clamp(-4px, -0.8vw, -3px)) rotate(0deg);
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.fab-icon-close {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(clamp(-4px, -0.8vw, -3px)) rotate(90deg);
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.hilanaw-fab-container:hover .fab-icon-menu {
    transform: translate(-50%, -50%) translateX(0) rotate(0deg);
}

.hilanaw-fab-container:hover .fab-icon-close {
    transform: translate(-50%, -50%) translateX(0) rotate(90deg);
}

body.fab-menu-open .fab-icon-menu {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(0) rotate(-90deg);
}

body.fab-menu-open .fab-icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0) rotate(0deg);
}

/* ============================================
   OVERLAY
   ============================================ */

.hilanaw-fab-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

body.fab-menu-open .hilanaw-fab-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ============================================
   MENU PANEL
   ============================================ */

.hilanaw-fab-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
    z-index: 999998;

    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s ease;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.fab-menu-open .hilanaw-fab-menu-panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* ============================================
   MENU CONTENT (scrollable area)
   ============================================ */

.fab-menu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.fab-menu-content::-webkit-scrollbar { width: 4px; }
.fab-menu-content::-webkit-scrollbar-track { background: #f1f1f1; }
.fab-menu-content::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 2px; }

/* ============================================
   MENU ITEMS — DEPTH 0 (top level)
   ============================================ */

.fab-menu-items {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.fab-menu-items li {
    margin: 0;
    padding: 0;
}

/* All <a> links at depth 0 */
.fab-menu-items > li > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #2c2c2c;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    position: relative;
}

.fab-menu-items > li > a:hover {
    background: #f0f5ff;
    border-left-color: #0066cc;
    color: #0046a0;
}

.fab-menu-items > li > a:active {
    background: #e0edff;
}

/* Active/current page — depth 0 */
.fab-menu-items .current-menu-item > a,
.fab-menu-items .current_page_item > a,
.fab-menu-items .current-menu-ancestor > a {
    background: #eef4ff;
    border-left-color: #0046a0;
    color: #0046a0;
    font-weight: 600;
}

/* ============================================
   ICONS & TEXT — shared across all depths
   ============================================ */

.menu-item-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #555;
    transition: color 0.15s ease;
}

.fab-menu-items a:hover .menu-item-icon,
.fab-menu-items .current-menu-item > a .menu-item-icon {
    color: #0046a0;
}

.menu-item-icon svg {
    width: 20px;
    height: 20px;
}

.menu-item-text {
    font-size: 15px;
    line-height: 1.3;
    flex: 1;
}

/* ============================================
   CHEVRON (parent toggle indicator)
   ============================================ */

.fab-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #aaa;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s ease;
    margin-left: auto;
    padding-left: 4px;
}

/* Rotate chevron when parent is open */
.fab-has-submenu.fab-submenu-open > a .fab-chevron {
    transform: rotate(180deg);
    color: #0046a0;
}

/* ============================================
   ACCORDION — DEPTH 1 (children)
   ============================================ */

/* The <ul> produced by the Walker at depth 1 */
.fab-submenu.fab-submenu--depth-0 {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f7f9fd;
    border-left: 3px solid #d0dff7;
    overflow: hidden;

    /* Collapsed state */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
}

/* Open state — JS adds .fab-submenu-open to the parent <li> */
.fab-has-submenu.fab-submenu-open > .fab-submenu--depth-0 {
    max-height: 800px; /* generous ceiling — actual height drives animation */
    opacity: 1;
}

/* Child <a> links */
.fab-submenu--depth-0 > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px 11px 28px; /* indented vs depth-0 */
    color: #3a3a3a;
    font-size: 14px;
    text-decoration: none;
    border-left: none;
    transition: background 0.15s ease, color 0.15s ease;
    position: relative;
}

.fab-submenu--depth-0 > li > a:hover {
    background: #e8effc;
    color: #0046a0;
}

.fab-submenu--depth-0 > li > a .menu-item-icon {
    width: 18px;
    height: 18px;
    color: #777;
}

.fab-submenu--depth-0 > li > a .menu-item-icon svg {
    width: 16px;
    height: 16px;
}

.fab-submenu--depth-0 > li > a .menu-item-text {
    font-size: 13.5px;
}

/* Active child */
.fab-submenu--depth-0 .current-menu-item > a {
    background: #e0ecff;
    color: #0046a0;
    font-weight: 600;
}

/* ============================================
   ACCORDION — DEPTH 2 (grandchildren)
   ============================================ */

/* The <ul> produced by the Walker at depth 2 */
.fab-submenu.fab-submenu--depth-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f0f4fb;
    border-left: 3px solid #b8ccf0;
    overflow: hidden;

    /* Collapsed state */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
}

/* Open state — JS adds .fab-submenu-open to the child <li> */
.fab-has-submenu--nested.fab-submenu-open > .fab-submenu--depth-1 {
    max-height: 600px;
    opacity: 1;
}

/* Grandchild <a> links */
.fab-submenu--depth-1 > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px 9px 44px; /* further indented */
    color: #4a4a4a;
    font-size: 13px;
    text-decoration: none;
    border-left: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.fab-submenu--depth-1 > li > a:hover {
    background: #dce7f8;
    color: #0046a0;
}

.fab-submenu--depth-1 > li > a .menu-item-icon {
    width: 16px;
    height: 16px;
    color: #888;
}

.fab-submenu--depth-1 > li > a .menu-item-icon svg {
    width: 14px;
    height: 14px;
}

.fab-submenu--depth-1 > li > a .menu-item-text {
    font-size: 13px;
}

/* Active grandchild */
.fab-submenu--depth-1 .current-menu-item > a {
    background: #d4e4ff;
    color: #0046a0;
    font-weight: 600;
}

/* ============================================
   PARENT TOGGLE LINK
   (parent items with children — click to expand)
   ============================================ */

.fab-parent-toggle {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

/* Parent open state — highlight */
.fab-has-submenu.fab-submenu-open > .fab-parent-toggle {
    background: #eef4ff;
    border-left-color: #0046a0;
    color: #0046a0;
}

.fab-has-submenu.fab-submenu-open > .fab-parent-toggle .menu-item-icon {
    color: #0046a0;
}

/* Nested parent (depth-1 item that also has children) */
.fab-has-submenu--nested > a.fab-parent-toggle {
    font-size: 14px;
    padding: 11px 20px 11px 28px;
    background: transparent;
    color: #3a3a3a;
    border-left: none;
}

.fab-has-submenu--nested.fab-submenu-open > a.fab-parent-toggle {
    background: #e2eafc;
    color: #0046a0;
}

/* ============================================
   ADMIN NOTICE
   ============================================ */

.fab-menu-notice {
    margin: 12px 16px;
    padding: 12px;
    background: #fff8e1;
    border: 1px solid #f0c030;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
}

.fab-menu-notice p { margin: 0; }
.fab-menu-notice a { color: #0066cc; }

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 480px) {
    .hilanaw-fab-menu-panel {
        width: 100%;
        max-width: 100vw;
    }

    .fab-menu-items > li > a {
        padding: clamp(14px, 4vw, 18px) clamp(14px, 4vw, 18px);
    }

    .fab-submenu--depth-0 > li > a {
        padding-left: clamp(24px, 7vw, 32px);
    }

    .fab-submenu--depth-1 > li > a {
        padding-left: clamp(36px, 10vw, 48px);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.fab-menu-items a:focus-visible,
.fab-submenu a:focus-visible {
    outline: 3px solid #0066cc;
    outline-offset: -3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hilanaw-fab-button,
    .hilanaw-fab-menu-panel,
    .hilanaw-fab-overlay,
    .fab-icon,
    .fab-submenu,
    .fab-chevron {
        transition: none;
    }
    .hilanaw-fab-button.fab-first-load {
        animation: none;
    }
}

/* Print */
@media print {
    .hilanaw-fab-container,
    .hilanaw-fab-menu-panel,
    .hilanaw-fab-overlay {
        display: none !important;
    }
}

/* ============================================
   BUILDER CARD
   ============================================ */

.fab-builder-card {
    margin-top: auto;
    flex-shrink: 0;
    padding: 14px 16px 16px;
    background: #f9fafb;
    border-top: 1px solid #e8e8e8;
}

.fab-builder-card-inner {
    border: 2px dotted #0066cc;
    border-radius: 16px;
    padding: 14px 12px 12px;
    background: #ffffff;
    text-align: center;
}

.fab-builder-profile {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.fab-builder-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0066cc;
    display: block;
}

.fab-builder-avatar-initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002d6e 0%, #0046a0 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0066cc;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.fab-builder-info {
    margin-bottom: 10px;
}

.fab-builder-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px;
    line-height: 1.3;
}

.fab-builder-role {
    font-size: 10px;
    color: #0066cc;
    font-weight: 600;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.fab-builder-bio {
    font-size: 11px;
    color: #555;
    font-weight: 500;
    margin: 0 0 6px;
    line-height: 1.4;
}

.fab-builder-tagline {
    font-size: 12px;
    color: #444;
    font-style: italic;
    margin: 0 0 2px;
    line-height: 1.4;
}

.fab-builder-cta {
    font-size: 12px;
    color: #0046a0;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
}

.fab-builder-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.fab-builder-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.15s ease, opacity 0.15s ease;
    flex-shrink: 0;
}

.fab-builder-link:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.fab-builder-link--linkedin { background: #0077b5; }
.fab-builder-link--twitter  { background: #000000; }
.fab-builder-link--whatsapp { background: #25d366; }
.fab-builder-link--email    { background: #0046a0; }

/* ============================================
   AUTH ITEM (Login / Logout)
   ============================================ */

.fab-auth-item {
    padding: 8px 0 4px;
    border-top: 1px solid #e8e8e8;
    margin-top: 4px;
}

.fab-logout-item > a {
    color: #c0392b;
}

.fab-logout-item > a:hover {
    background: #fff5f5;
    border-left-color: #c0392b;
    color: #c0392b;
}

.fab-logout-item .menu-item-icon {
    color: #c0392b;
}

.fab-login-item > a:hover {
    background: #f0f7ff;
    border-left-color: #0066cc;
}

/* ============================================
   AD CAROUSEL
   ============================================ */

.fab-ad-carousel {
    margin-top: auto;
    flex-shrink: 0;
    padding: 14px 16px 16px;
    background: #f9fafb;
    border-top: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.fab-ad-slide {
    display: none;
}

.fab-ad-slide--active {
    display: block;
    animation: fabCardEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fab-ad-slide--exit {
    animation: fabCardExit 0.35s cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes fabCardEnter {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fabCardExit {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
}

.fab-builder-card-inner--ondred {
    border-color: #d03d43;
}

.fab-ondred-logo {
    background: linear-gradient(135deg, #b03030 0%, #d03d43 100%);
    border-color: #d03d43;
}

.fab-ondred-role {
    color: #d03d43 !important;
    font-size: 9.5px !important;
    line-height: 1.4 !important;
}

.fab-ondred-note {
    font-size: 10px;
    color: #888;
    font-style: italic;
    margin: 4px 0 0;
    line-height: 1.3;
}

.fab-ondred-cta-row {
    display: flex !important;
    gap: 6px !important;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.fab-ondred-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
    line-height: 1;
}

.fab-ondred-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.fab-ondred-btn--primary {
    background: #d03d43;
    color: #ffffff !important;
}

.fab-ondred-btn--whatsapp {
    background: #25d366;
    color: #ffffff !important;
}

.fab-ondred-btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   FOUNDER'S CIRCLE CARD
   ============================================ */

.fab-builder-card-inner--founders-circle {
    border-color: #0046a0;
}

.fab-founders-circle-avatar {
    background: #ffffff;
    border-color: #0046a0;
    padding: 6px;
    object-fit: contain;
}

.fab-founders-circle-initials {
    background: linear-gradient(135deg, #002d6e 0%, #0046a0 100%);
    border-color: #0046a0;
}

.fab-founders-circle-role {
    color: #0046a0 !important;
    font-size: 9.5px !important;
    line-height: 1.4 !important;
}

.fab-founders-circle-cta-row {
    display: flex !important;
    gap: 6px !important;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.fab-ad-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.fab-ad-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fab-ad-dot--active {
    background: #d03d43;
    transform: scale(1.3);
}

.fab-ad-carousel:hover .fab-ad-slide--active {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .fab-ad-slide--active,
    .fab-ad-slide--exit {
        animation: none;
    }
}

/* ============================================
   CERTIFICATE MENU ITEM
   ============================================ */

.hilanaw-cert-nav-item > a {
    position: relative;
}

.hilanaw-cert-nav-item > a .menu-item-icon {
    color: #0066cc;
}

.hilanaw-cert-nav-item > a:hover .menu-item-icon {
    color: #0046a0;
}

.hilanaw-cert-nav-item > a .menu-item-text {
    color: #0046a0;
    font-weight: 600;
}

.hilanaw-cert-nav-item .cert-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    background: #0046a0;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* ============================================
   DARK MODE OVERRIDES
   Chat page only — dark mode does not apply to FAB on other pages.
   ============================================ */

body.hilanaw-chat-page.hilanaw-dark .hilanaw-fab-menu-panel {
    background: #1a1f2e;
}

body.hilanaw-chat-page.hilanaw-dark .fab-menu-items > li > a {
    color: #d0d8e8;
}

body.hilanaw-chat-page.hilanaw-dark .fab-menu-items > li > a:hover {
    background: #242b3d;
    color: #7ab3f7;
}

body.hilanaw-chat-page.hilanaw-dark .fab-menu-items .current-menu-item > a,
body.hilanaw-chat-page.hilanaw-dark .fab-menu-items .current-menu-ancestor > a {
    background: #1e2a45;
    color: #7ab3f7;
}

body.hilanaw-chat-page.hilanaw-dark .fab-submenu--depth-0 {
    background: #161b28;
    border-left-color: #2a3550;
}

body.hilanaw-chat-page.hilanaw-dark .fab-submenu--depth-0 > li > a {
    color: #b8c4d8;
}

body.hilanaw-chat-page.hilanaw-dark .fab-submenu--depth-0 > li > a:hover {
    background: #1e2a45;
    color: #7ab3f7;
}

body.hilanaw-chat-page.hilanaw-dark .fab-submenu--depth-1 {
    background: #131724;
    border-left-color: #233050;
}

body.hilanaw-chat-page.hilanaw-dark .fab-submenu--depth-1 > li > a {
    color: #a0b0c8;
}

body.hilanaw-chat-page.hilanaw-dark .fab-submenu--depth-1 > li > a:hover {
    background: #1a2540;
    color: #7ab3f7;
}

body.hilanaw-chat-page.hilanaw-dark .fab-has-submenu.fab-submenu-open > .fab-parent-toggle {
    background: #1e2a45;
    color: #7ab3f7;
}

body.hilanaw-chat-page.hilanaw-dark .fab-auth-item {
    border-top-color: #2a3050;
}

body.hilanaw-chat-page.hilanaw-dark .fab-menu-content::-webkit-scrollbar-track { background: #1a1f2e; }
body.hilanaw-chat-page.hilanaw-dark .fab-menu-content::-webkit-scrollbar-thumb { background: #3a4560; }
