/* --- PANEL WCAG: IKONA + MENU --- */
#a11y-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    border: 2px solid #ffffff;
    transition: transform 0.15s ease;
}

#a11y-toggle:hover {
    transform: scale(1.08);
}

#a11y-menu {
    position: fixed;
    top: 80px;
    left: 20px;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 12px;
    border-radius: 6px;
    display: none;
    z-index: 9999;
    width: 210px;
    font-family: Arial, sans-serif;
}

#a11y-menu button {
    width: 100%;
    margin: 6px 0;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    background: #f2f2f2;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    text-align: left;
    transition: background 0.15s ease;
}

#a11y-menu button:hover {
    background: #e0e0e0;
}

/* --- WYSOKI KONTRAST (bez psucia układu) --- */
body.high-contrast,
body.high-contrast * {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}
/* --- WCAG: wyróżnienie linków w trybie wysokiego kontrastu --- */
body.high-contrast a {
    text-decoration: underline !important;
    font-weight: bold !important;
    color: #00ffff !important; /* jasny cyjan – bardzo czytelny na czarnym tle */
}

body.high-contrast a:hover {
    color: #ffff00 !important; /* żółty – jeszcze mocniejsze wyróżnienie */
}
body.high-contrast [id^="button_"] span,
body.high-contrast [id^="button_"] a {
    color: #00ffff !important;
    font-weight: bold !important;
    text-decoration: underline !important;
    border: 2px solid #ffffff !important;
    padding: 4px !important;
}
