.floatingMenu {
    position: fixed;
    top: 30%;
    max-height: 500px !important;
    max-width: 20vw;
    right: 0;
    overflow: auto;
    background: #f5f9ff;
    color: #000;
    border-radius: 5px 0 0 5px;
    opacity: 0.9;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.menuIcon {
    cursor: pointer;
    font-size: 22px;
    padding: 20px;
    position: sticky;
    top: 0;
    background: #f5f9ff;
    color: #41ceb1;
    z-index: 9999999999;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.hidden {
    display: none;
}
.floatingMenu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    background-color: #fff;
}
.floatingMenu ul li {
    padding: 5px 10px;
    cursor: pointer;
    color: #334f6e;
    font-weight: 500;
    border-left: 2px solid #ddd;
    position: relative;
}
.floatingMenu ul li:hover,.currentlySelectedHeading{
    color: #69c4d0!important;
    border-left: 2px solid #69c4d0!important;
    /* transform: scale(1.05); */
    transition: 0.1s ease-in-out;
}
.currentlySelectedHeading::before,.floatingMenu ul li:hover::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #3ec1d3;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
}
#eznavigate-settings-alert-box {
    --bs-alert-bg: #fff;
}
/* .headingListDiv {
    display: inline-grid;
    gap: 10px;
} */
.headingslist{
    display: flex;
    flex-direction: column;
}
.saveSelectedHeadingsButton{
    width: fit-content;
}

.pagesDropdown {
    background-color: #67c3cf14;
}
.pagesDropdownLabel {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}
option.pagesOption {
    background: #fff;
}
.ezNavigateMainDiv {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.pageHeadersSectionHeading {
    font-size: 26px;
}
label.headingListLabels {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    gap: 10px;
}
input.headingCheckbox {
    appearance: none;
    min-width: 18px !important;
    width: 20px;
    height: 20px;
    border: 2px solid #41ceb1;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    opacity: 1 !important;
}
input.headingCheckbox:checked {
    background-color: #41ceb1;
    border-color: #41ceb1;
}
.noHeadingsText {
    color: #ecbf12!important;
    cursor: inherit!important;
    margin-bottom: 0px!important;
  }
  .noHeadingsText::before {
    content: "\26A0\FE0F"; /* This is a warning emoji as an icon */
    color: #ecbf12;
  }
.headingCheckbox:checked::after {
    content: '✔';
    color: white;
    font-size: 14px;
    position: absolute;
    bottom: -5px;
    left: 2px;
}
.saveSelectedHeadingsButton{
    color: #41ceb1 !important;
    background-color: rgba(65, 206, 177, 0.2) !important;
    border-radius: 3px;
    padding: 13px 38px;
    font-weight: 700;
    border: none;
}
.saveSelectedHeadingsButton:hover{
    color: #fff !important;
    background-color: #41ceb1 !important;
}