#aksesibilitas-menu {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.aksesibilitas-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.aksesibilitas-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
}

#aksesibilitas-panel {
    margin-top: 12px;
    background: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeIn 0.3s ease;
    min-width: 180px;
}

#aksesibilitas-panel button {
    background: #f8f9fa;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #333;
    text-align: left;
}

#aksesibilitas-panel button i {
    font-size: 16px;
    color: #007bff;
}

#aksesibilitas-panel button:hover {
    background: #007bff;
    color: white;
}

#aksesibilitas-panel button:hover i {
    color: white;
}

/* Animasi panel */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(5px);}
    to {opacity: 1; transform: translateY(0);}
}


/* Mode kontras tinggi */
.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast a {
    color: yellow !important;
}

.high-contrast button {
    background-color: #444 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}

.high-contrast header,
.high-contrast footer,
.high-contrast nav {
    background-color: #000 !important;
    color: #fff !important;
}

/* Font khusus aksesibilitas */
.easy-font {
    font-family: Arial, Helvetica, sans-serif !important;
    line-height: 1.6 !important;
}

/* Highlight link */
.highlight-links a {
    background: yellow !important;
    color: black !important;
    padding: 2px 4px;
    border-radius: 4px;
}


/* Tombol aksesibilitas */
#aksesibilitas-panel button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    margin: 4px 0;
    border: none;
    border-radius: 5px;
    background: #f1f1f1;
    cursor: pointer;
    transition: background 0.3s;
}
#aksesibilitas-panel button:hover {
    background: #ddd;
}
