body {
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: black;
}

a {
    color: blue;
    text-decoration: underline;
}


/* High Contrast Mode */

.high-contrast {
    background: black !important;
    color: yellow !important;
}


/* Highlight Links Mode */

.highlight-links a {
    background: yellow;
    color: black;
    padding: 2px 4px;
    border-radius: 3px;
}


/* Invert Colors */

.invert-colors {
    filter: invert(1) hue-rotate(180deg);
}


/* Saturate Colors */

.saturate {
    filter: saturate(3);
}


/* Toolbar Styles */
.toolbar_heading{
    font-size: 18px;
    font-weight: bold;
}
.toolbar {
    width: 299px;
    position: absolute;
    top: 45px;
    right: 0px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
.icons_container
{
    display: flex;
    text-align: center;
    width: 125px;
    height: 80px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 0px 1px;
    margin: 5px;
    border-radius: 5px;
    transition: all 0.3s linear 0s;
    flex-direction: column;
    transition: all 0.3s;
    cursor: pointer;
}
.icons_container:hover
{
    background-color: #8d8b92;
}
.buttons_border
{
    border: 0px;
    cursor: pointer;
    margin-top: 10px;
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.buttons_border:hover{
    background-color: #e3e0ee;
}
.icons_image{
    margin-left: 40px;
}
/* Accessibility Icon Button */

.accessibility-icon {
    position: fixed;
    top: 10px;
    left: 10px;
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.buttons_Color {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.page_Images {
    width: 20%;
    margin: 10px;
}

.page_Images {
    width: 300px;
    margin: 10px;
    transition: all 0.3s ease;
}

.hidden {
    display: none;
}

.controls button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.big-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 0,40 12,28 20,48 24,46 16,26 32,26" fill="black"/></svg>') 16 16, auto;
  }
.speakable {
    cursor: pointer;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
}
.speakable:hover {
    background-color: #dfefff;
}