.accessibility-menu {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            border: 2px solid #3B82F6;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            min-width: 200px;
        }

        .accessibility-toggle {
            background: #3B82F6;
            color: white;
            /* padding: 8px 12px; */
            border: none;
            border-radius: 6px 6px 0 0;
            width: 100%;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .accessibility-toggle:hover {
            background: #2563EB;
        }

        .accessibility-panel {
            padding: 16px;
            display: none;
        }

        .accessibility-panel.active {
            display: block;
        }

        .accessibility-btn {
            width: 100%;
            padding: 8px 12px;
            margin-bottom: 8px;
            border: 1px solid #D1D5DB;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.2s;
        }

        .accessibility-btn:hover {
            background: #F3F4F6;
            border-color: #3B82F6;
        }

        .accessibility-btn.active {
            background: #3B82F6;
            color: white;
            border-color: #3B82F6;
        }

        .font-controls {
            display: flex;
            gap: 4px;
        }

        .font-controls button {
            flex: 1;
            padding: 4px 8px;
            border: 1px solid #D1D5DB;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            font-size: 14px;
        }

        .font-controls button:hover {
            background: #F3F4F6;
        }

        /* High contrast mode */
        body.high-contrast {
            background: #000000 !important;
            color: #FFFFFF !important;
        }

        body.high-contrast * {
            background: #000000 !important;
            color: #FFFFFF !important;
            border-color: #FFFFFF !important;
        }

        body.high-contrast a {
            color: #00FFFF !important;
            text-decoration: underline !important;
        }

        body.high-contrast button {
            background: #FFFFFF !important;
            color: #000000 !important;
            border: 2px solid #FFFFFF !important;
        }

        body.high-contrast .accessibility-menu {
            background: #000000 !important;
            border-color: #FFFFFF !important;
        }

        body.high-contrast .accessibility-btn.active {
            background: #FFFFFF !important;
            color: #000000 !important;
        }

        /* Styles untuk demo content */
        /* .demo-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }

        .demo-content h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #1F2937;
        }

        .demo-content h2 {
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem 0;
            color: #374151;
        }

        .demo-content p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        .demo-content a {
            color: #3B82F6;
            text-decoration: underline;
        } */

        /* Status reading indicator */
        .reading-active {
            position: fixed;
            top: 80px;
            right: 20px;
            background: #10B981;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            z-index: 999;
            display: none;
        }

        .reading-active.show {
            display: block;
        }