
/* Accessibility System CSS */
/* These classes are applied to the <body> element and only take effect when active */

/* High Contrast Mode */
body.acc-high-contrast,
body.acc-high-contrast * {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #ffff00 !important;
    background-image: none !important;
}
body.acc-high-contrast a, 
body.acc-high-contrast .btn,
body.acc-high-contrast i {
    color: #ffff00 !important;
}
body.acc-high-contrast img, 
body.acc-high-contrast video {
    filter: grayscale(100%) contrast(120%) !important;
}

/* Readable Font */
body.acc-readable-font,
body.acc-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
}

/* Highlight Links */
body.acc-highlight-links a,
body.acc-highlight-links button,
body.acc-highlight-links .btn {
    text-decoration: underline !important;
    text-decoration-color: #ff0000 !important;
    text-decoration-thickness: 3px !important;
    color: #ff0000 !important;
    font-weight: bold !important;
}

/* Stop Animations */
body.acc-stop-animations *,
body.acc-stop-animations *::before,
body.acc-stop-animations *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

/* Large Cursor */
body.acc-large-cursor,
body.acc-large-cursor * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M4 4l9 22 4-9 9-4z" fill="%23000" stroke="%23fff" stroke-width="2"/></svg>'), auto !important;
}
body.acc-large-cursor a,
body.acc-large-cursor button,
body.acc-large-cursor .btn {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M12 2c-.6 0-1 .4-1 1v8H5c-.6 0-1 .4-1 1v12c0 2.2 1.8 4 4 4h8c3.3 0 6-2.7 6-6V10c0-1.1-.9-2-2-2h-2V3c0-.6-.4-1-1-1h-4z" fill="%23000" stroke="%23fff" stroke-width="2"/></svg>'), pointer !important;
}

/* Accessibility Menu Styles */
.acc-modal-btn {
    width: 100%;
    text-align: right;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}
.acc-modal-btn i {
    font-size: 1.2rem;
    color: #004d99;
    width: 24px;
    text-align: center;
}
.acc-modal-btn:hover {
    background: #e6f0fa;
    border-color: #004d99;
}
.acc-modal-btn.active {
    background: #004d99;
    color: #fff;
    border-color: #004d99;
}
.acc-modal-btn.active i {
    color: #fff;
}
.acc-reset-btn {
    background: transparent;
    color: #dc3545;
    border: none;
    text-decoration: underline;
    font-size: 0.9rem;
    padding: 0;
}
