﻿#accessible-floating-menu {
    position: fixed;
    top: 10px;
    right: 60px;
    /*background: #fff;*/
    padding: 7px;
    width: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 999;    
}

.accessible-button {
    background-color: #0e77bc;
    color: #fff;
    border-radius: 5px;
    border: 0;
    padding: 3px 9px;    
    height: 30px;    
    line-height: 25px;
}

#accessible-floating-menu-directory-client {    
    position: fixed;
    top: 0px;
    left: 0px;
    /*background: #fff;*/
    padding: 7px;
    width: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 9999;
}

#scalable-content {
    display: inline-block;
}

body {
    overflow-x: auto;
}

.high-contrast {
    background-color: black !important;
    color: yellow !important;
}

body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6,
body.high-contrast p,
body.high-contrast span {
    color: yellow !important;
}

.high-contrast a {
    color: cyan !important;
}

.high-contrast button {
    background-color: yellow !important;
    color: black !important;
    border: 1px solid white;
}

@media only screen and (max-width:768px) {
    .accessible-button {
        padding: 2px 5px;
        height: 25px;
        line-height: 20px;
        font-size: 13px;
    }
}
