.fixed-circle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #023b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
}

/* Modal container */
.accessibility-modal {
    display: none; /* Initially hidden */
    position: fixed;
    left: 0;
    bottom: 0; /* Position at the bottom of the screen */
    width: 25%; /* Set width to 50% */
    height: 75%; /* Set height to 50% */
    margin: 2rem;
    background-color: white;
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.2); /* Shadow effect on the right */
    z-index: 999;
    overflow-y: auto; /* Make modal scrollable */
}

/* Modal content */
.accessibility-modal-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Close button for the modal */
.close-btn {
    font-size: 50px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 10px;
}

/* Basic styles for the settings inside the modal */
.settings {
    text-align: left;
}

/* Indicator bars for carousel */
.indicator-bar {
    display: flex;
    justify-content: space-around;
    margin: 5px 0;
}

.indicator-bar div {
    width: 20px;
    height: 5px;
    background-color: #ddd;
}

.indicator-bar div.active {
    background-color: #333; /* Highlight the active indicator */
}


.greyscale-mode {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important; /* Support for older WebKit browsers */
}

/* Mobile */

@media (max-width: 768px) {
    .accessibility-modal {
        margin: 0; /* Remove margin for mobile screens */
        width: 100%; /* Full width on mobile */
        height: 50%; /* Reduce height to 50% on mobile */
    }
    .indicator-bar {
        height: 4px; /* Adjust the size of the indicator bar */
    }

    .pad-mobile{
        padding-left: 0px !important;
        padding-right: 0px !important;
        padding-top: 0px !important;
    }
}