/* Add some basic styling for the accordion */
body {
    margin: 0;
    background-color: #c5c6d0;
    font-family: Georgia;
    display: flex;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    overflow: auto;
    font-family: 'Exo 2', sans-serif!important;

}

.font-arial {
    font-family: 'Arial', sans-serif;
}



#menu {
    width: 200px;
    background-color: #c5c6d0;
    padding: 31px 10px 20px 10px;
    height: 100%;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    display: flex;
    flex-direction: column;
    top: 0;
}

#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #ddd;
    border-radius: 10px;
    font-family: 'Nato';
}

#menu li {
    margin-bottom: 5px;
    font-family: 'Exo 2', sans-serif!important;
    list-style-type: none;
}

#menu a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #000000;
    background-color: #ddd;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#menu a:hover {
    background-color: #ccc;
}

#content {
    flex: 1;
    padding: 10px 0 10px 10px;
    min-height: 100vh;
}

.div-DMeX {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.litext span {
    margin: 60px;
}


iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.checkbox-container input {
    display: none;
    /* Hide the default checkbox */
}

.checkbox-container label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    /* Adjust this value based on your preference */
}

.checkbox-container label:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    /* Adjust this value based on your preference */
    height: 18px;
    /* Adjust this value based on your preference */
    border: 1px solid #ddd;
    /* Border color */
    background-color: #fff;
    /* Background color */
    border-radius: 3px;
    /* Border radius */
}

.checkbox-container input:checked+label:before {
    content: "\2713";
    /* Checkmark character */
    font-size: 14px;
    color:  #fff;
    /* Checkmark color */
    text-align: center;
    line-height: 18px;
}

/* 
.toggle-text {
margin-left: 10px;
color: black;
font-size: 14px;
display: none;
} */

.checkbox-container input:checked+.toggle-text {
    display: block;
}




.toggle-button {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    background-color: #2196F3;
    /* Blue color */
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
}

.toggle-button .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    border-radius: 25px;
    transition: transform 0.4s;
}

.toggle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 14px;
    display: none;
}

.image-container {
    display: inline-block;
    margin-right: 10px;
    /* Adjust the margin as needed */
}

.text-container {
    color:  #f87622;
    display: inline-block;
    height: 30px;
    padding: 20px 0px;
    font-family: 'Exo 2', sans-serif!important;
    font-size: 22px;
    font-weight: 600;
    
}

.searchBar {
    height: 30px;
    width: 95%;
    border: unset;
    border-radius: unset;
    outline: unset;
    padding: unset;
}

.switch {
    position: relative;
    display: inline-block;
    width: 37px;
    height: 13px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 6px;
    width: 7px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #8321f3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.toggle-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 388px;
    font-size: small;
}

.toggle-container p {
    margin-right: 10px;
    /* Adjust the margin as needed */
}

/* .toggle-button input {
  display: none;
}

.toggle-button input:checked + .slider {
  transform: translateX(26px);
}

.toggle-button input:checked + .slider + .toggle-text {
  display: block;
} */

.accordion-content {
    display: none;
    /*padding-left: 15px;*/
}
.li-header1{
    padding-left: 20px;
}
.li-header2{
    padding-left: 21px;
}
.input-main-container{
    padding: 5px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #051874;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif!important;
}

.list-container {
    padding-top: 10px;
    flex-grow: 1; /* Allow the list container to grow and take remaining space */
    overflow-y: auto; /* Enable vertical scrolling for the list container */
    max-height: calc(100vh - 31px); /* Set a maximum height, subtracting the top padding */
}

/* .scrollable-content {
    scrollbar-width: none;
  } */
.list-container::-webkit-scrollbar {
    display: none;
  }

.inner-button span{
    margin-left: 20px;
}

.list-container li a span {
    white-space: nowrap;
}

