body {
	margin: 0;
	margin-left: 10px;
	padding: 0;
	overflow-y: hidden;
	background-color: #fffdfa;
        -ms-overflow-style: none;  /* for Internet Explorer, Edge */
        scrollbar-width: none;     /* for Firefox */
}
body::-webkit-scrollbar {
    width: 0;
}
.container {
    display: flex;
    height: 99vh;
    overflow-y: hidden;
    width: 99vw; 
}
.left {
    overflow-y: scroll;
    flex: 1;
    height: 100%;
    border-right: 0px solid black;
}

.right {
    overflow-y: scroll;
    flex: 4;
    height: 100%;
    border-left: 0px solid black;
}
      div.head {
	  font-size: 20px;
	  font-family: \"Palatino Linotype\",\"Book Antiqua\",Palatino,serif;
      }
      div.secs {
	  font-size: 16px;
	  font-family: \"Palatino Linotype\",\"Book Antiqua\",Palatino,serif;
	  margin-left: 20px;
      }
      .button2 {
	  border: 5px;
	  cursor: pointer;
	  margin-bottom: 0px;
	  width: 80%;
	  margin-bottom: 4px;
	  text-align: left;
	  color: black;
	  font-size: 15px;
	  background-color: #efedea;
	  transition: 0.4s;
      }
      .button2:hover {
	  background-color: #e0d8d0; 
      }
     .accordion {
	  background-color: #fffdfa;
	  color: #000000;
	  cursor: pointer;
	  padding: 2px;
	  padding-left: 1.0em;
          text-indent:-1.0em;
	  width: 100%;
	  border: none;
	  text-align: left;
	  outline: none;
	  font-size: 16px;
	  font-family: \"Palatino Linotype\",\"Book Antiqua\",Palatino,serif;
	  transition: 0.4s;
      }      
      .active, .accordion:hover {
	  background-color: #e0d8d0; 
      }
.activebutton {
    background-color: #e0d8d0;
}
.sxn {
	  padding: 0px;
	  padding-left: 2.5em;
          text-indent: -1.5em;
	  font-size: 16px;
	  font-family: \"Palatino Linotype\",\"Book Antiqua\",Palatino,serif;
	  margin-bottom: 0px;
	  margin-top: 0px;
	  color: #000000;
      }
      .active, .sxn:hover {
	  background-color: #f0f0e0; 
	  transition: 0.4s;
      }
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}
