/* Sticky Help Hub */
.ewhelp-root {
    position: fixed;
    right: 16px;       /* always bottom-right */
    left: auto;        /* prevent conflicts */
    bottom: 90px;
    z-index: 9999;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
@media (max-width: 480px) {
    .ewhelp-root { right: 16px; left: auto; bottom: 90px; } /* keep right aligned on mobile */
}

.ewhelp-root{ right:25px !important; left:auto !important; bottom:99px !important; }
.ewhelp-panel{ right:0 !important; left:auto !important; bottom:95px !important; }


/* Floating action button */
.ewhelp-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: solid 1px #fff;
    background: #206938b5;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.ewhelp-fab:hover { transform: translateY(-1px); background: #1f2f66; }

/* Panel (anchor to bottom-right of root) */
.ewhelp-panel {
    position: absolute;
    right: 0;          /* <-- key: follow the FAB on the right */
    left: auto;        /* prevent left anchoring */
    bottom: 58px;      /* sits above the FAB */
    width: 280px;
    max-height: 70vh;
    overflow: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    transform: translateY(8px);   /* slide up animation */
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
    transform-origin: bottom right;
}

/* Open state */
.ewhelp-root.is-open .ewhelp-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Mobile width tweak so it never spills off-screen */
@media (max-width: 480px) {
    .ewhelp-panel { width: 88vw; }
}

.ewhelp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #fff;
	background-color: #206938;
}
.ewhelp-title {
    font-weight: 600;
    color: #fff;
	font-size:18px;
}
.ewhelp-close {
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

/* Accordion */
.ewhelp-accordion { padding: 8px; }
.ewhelp-acc-item { border: 1px solid #eef0f4; border-radius: 10px; margin: 8px; overflow: hidden; }
.ewhelp-acc-btn {
    width: 100%;
    text-align: left;
    background: #f8f9fc;
    border: none;
    padding: 10px 12px;
    font-weight: 600;
    color:#253B7C;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}

.ewhelp-acc-btn:hover {
    background: #eaf3ff;
    color: #AF1F24;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
} 

.ewhelp-caret { opacity: .7; }
.ewhelp-acc-panel { display: none; padding: 10px; background: #fff; }

.ewhelp-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    margin: 6px 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #253B7C;
    text-decoration: none;
    font-size: 14px;
    transition: background .15s ease, border-color .15s ease;
}
.ewhelp-btn:hover { background: #f3f6ff; border-color: #c7d2fe; }

/* Mobile nudge up slightly */
@media (max-width: 480px) {
    .ewhelp-root { left: 10px; bottom: 18px; }
    .ewhelp-panel { width: 88vw; }
}