/* Styling Tombol Melayang & Panel */
#fadli-acc-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}
#fadli-acc-toggle {
    background: #004a99;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
#fadli-acc-toggle:hover {
    transform: scale(1.1);
}
#fadli-acc-panel {
    position: absolute;
    bottom: 65px;
    left: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}
.acc-panel-header {
    background: #004a99;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.acc-panel-header h4 {
    margin: 0;
    font-size: 15px;
}
#acc-close-panel {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.acc-panel-body {
    padding: 15px;
    max-height: 380px;
    overflow-y: auto;
}
.acc-section-title {
    font-size: 11px;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    margin: 12px 0 6px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 3px;
}
.acc-panel-body button:not(#acc-close-panel) {
    display: block;
    width: 100%;
    margin-bottom: 6px;
    padding: 8px 10px;
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    color: #333;
    transition: background 0.2s;
}
.acc-panel-body button:not(#acc-close-panel):hover {
    background: #e2e8f0;
}
.acc-panel-footer {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
#acc-reset {
    background: #fee2e2 !important;
    color: #b91c1c !important;
    border-color: #f87171 !important;
    font-weight: bold;
    text-align: center !important;
}

/* Efek Aksesibilitas */
body.acc-high-contrast {
    background: #000000 !important;
    color: #ffff00 !important;
}
body.acc-high-contrast * {
    background-color: #000000 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
}
body.acc-high-contrast a {
    color: #00ffff !important;
    text-decoration: underline !important;
}
body.acc-grayscale {
    filter: grayscale(100%) !important;
}
body.acc-highlight-links a {
    background-color: yellow !important;
    color: black !important;
    border: 2px solid red !important;
    padding: 2px 4px !important;
}
body.acc-bold-text * {
    font-weight: bold !important;
}
body.acc-dyslexia * {
    font-family: "Comic Sans MS", "Comic Sans", Arial, sans-serif !important;
    letter-spacing: 0.05em !important;
    word-spacing: 0.1em !important;
}
body.acc-stop-animations *, body.acc-stop-animations *::before, body.acc-stop-animations *::after {
    animation: none !important;
    transition: none !important;
}

#acc-reading-line {
    position: fixed;
    height: 3px;
    background: red;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999998;
    display: none;
    pointer-events: none;
}
