    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
            overflow-x: hidden;
            overflow-y: hidden;
            --BG2: rgba(255,194,34,1);
            --BG3: rgb(96, 146, 92,1);
            --TextColor1: rgba(0,0,0,1);
            --TextColor2: rgba(235,235,235,1);
            --Backgroundlightgray: rgb(243, 243, 243,1); 
            --Backgroundwhite: rgb(255, 251, 251,1);
            --Backgroundmiddlegray: rgb(218, 216, 216);
            --Backgroundsecondgray: rgb(196, 190, 190);
            --BannerRed: rgba(168,72,72,1);
            --BannerRedOp: rgba(168,72,72,0.6);
            --Backgroundbluelight: rgba(0,66,92,1);
            --Backgroundbluedark: rgba(129,161,181,255);
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }


        *::-webkit-scrollbar{
            display: none;
          }
        
        body {
            background-color: rgba(240,242,245,1);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        
        .container {
            width: 100%;
            height: 100vh;
            backdrop-filter: blur(10px);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .top-menu {
            height: 55px; /* Fixed height for top menu */
            width: 100%;
            background-color: var(--Backgroundwhite);
            display: flex;
            padding: 0 15px;
            z-index: 3;
            flex-shrink: 0; /* Prevent shrinking */
        }
        
        .menu-item-box {
            height: 100%;
            width: 35px;
            display: flex;
            justify-content: center;
            margin-right: 10px;
            margin-left: 8px;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .menu-icon{
            display: flex;
            align-items: center;
        }
        .menu_icons{
          display: flex;
          margin: 0;
          align-items: baseline;
          height: 90%;
          width: 100%;
          stroke: var(--TextColor1);
          stroke-linecap: round;
          stroke-linejoin: round;
          stroke-width: 1.5;
          fill-rule: evenodd;
        }
        .contbox-close .m_icon {
          transform: rotate(0deg);
          height: 80%;
          width: 80%;
          transition: transform 0.3s ease-in-out;
        }
        .contbox-close.closed .m_icon{
          height: 80%;
          width: 80%;
          transform: rotate(45deg);
        }
        .menu-banner {
            color: var(--TextColor1);
            font-weight: 600;
            font-size: 1rem;
            height: 100%;
            align-items: center;
            display: flex;
        }
        .menu-banner-label{
          transition: all 0.3s ease;
        }
.main_menu {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    flex-direction: column;
    top: 65px;
    left: 15px;
    padding: 10px 0px 15px 0px;
    background-color: var(--Backgroundwhite);
    color: var(--TextColor1);
    border-radius: 8px;
    z-index: 11;
    border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transform: translateY(-10px) scale(0.98);
    
    /* Move transition to base class - this applies in both directions */
    transition: all 0.3s ease-in-out;
    
    /* GPU acceleration */
    will-change: transform, opacity;
    backface-visibility: hidden;
}


.main_menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
        .main_menu_content{
            display:flexbox;
            flex-direction: column;
            width: 100%;
        }
        .main_menu_choice{
            padding: 4px 15px 4px 15px;
            margin: 7px 0px 7px 0px;
            transition: all 0.2s ease;
            opacity: 1;
            display: flex;
        }
        .main_menu_choice.menu_close{
          opacity: 0;
          display: none;
        }
        .main_menu_choice:hover{
            background-color: var(--Backgroundlightgray);
            transition: all 0.2s ease;
        }
        .content-wrapper {
            display: flex;
            flex: 1; /* Take remaining space */
            width: 100%;
        }       
        .ABC, .CDE {
            transition: all 0.2s cubic-bezier(0.65, 0, 0.35, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow-Y: scroll;
        }
        
        .ABC {
            background-color: var(--Backgroundwhite);
            z-index: 2;
            justify-content: center;
            align-items: center;
            overflow-y: scroll;
        }
        .CDE {
            background-color: var(--Backgroundwhite);
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            margin: 0 auto
        }        
        /* Mobile styles (screen < 769px) */
        @media (max-width: 768px) {

          *{
            font-size: 10.5pt;
          }
          .submitbottom{
            font-size: 11pt
          }
          .submitbottom_button{
            font-size: 11pt;
          }
          .notification-text{
            font-size: 11pt;
          }


            .content-wrapper {
                flex-direction: column;
            }
            
            .ABC {
                width: 100%;
                height: 100%;
                padding: 5px;
                overflow-y: scroll;
            }
            
            .CDE {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 100%;
                padding: 10px;
            }
            
            /* When active */
            .container.active .ABC {
                transform: translateX(-100%);
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }
            
            .container.active .CDE {
                transform: translateX(-100%);
                opacity: 1;
                transition: opacity 0.3s ease-in-out;

            }
            .container.active .med_top{
               margin-top: 25px;
}
        }
        
        /* Desktop styles (screen >= 769px) */
        @media (min-width: 769px) {
            *{
              font-size: 11.5pt
            }
            .submitbottom{
              font-size: 12pt;
            }
            .submitbottom_button{
              font-size: 12.5pt;
            }
            .notification-text{
              font-size: 12.5pt;
            }
            body {
                padding: 15px;
            }
            
            .container {
                max-width: 1200px;
                height: 85vh;
                border-radius: 20px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }
            
            .ABC {
                width: 45%;
                height: 100%;
                padding: 10px;
                overflow-y: scroll;
            }
            
            .CDE {
                width: 55%;
                height: 100%;
                padding: 10px;
            }
        }
        
button {
    background-color: var(--Backgroundbluelight);
    border: none;
    padding: 15px 40px;
    color: white;
    font-size: initial;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}


        /* Unified sel-box styles */
.sel-box {
    width: 100%;
    height: 90%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: black;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: var(--Backgroundwhite);
    transform: translateX(100%);
    opacity: 0;
    
    /* Transition both properties */
    transition: opacity 0.3s ease;
}

.sel-box.active {
    transform: translateX(0);
    opacity: 1;
}

.sel-box.place-left {
    transform: translateX(-100%);
    opacity: 0; /* Still 0 but will transition */
}
.sub_page_marker{
  height: 2px;
}
ul {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    overflow-y: scroll;
}

li {
    margin-bottom: 10px;
}

.catbtn, .subcatbtn, .medbtn {
    position: relative;
    background-color: var(--Backgroundwhite);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.8px);
    -webkit-backdrop-filter: blur(4.8px);
    border: 1px solid rgba(26, 25, 25, 0.08);
    height: 2.5rem;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    margin-bottom: 1%;
    margin-left:20px;
    margin-top: 1%;
    width: 90%;
    display: flex;
    overflow: hidden;
    align-items: center;
    cursor: pointer;
}

.category-text-box {
    display: flex;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.texticon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 5px;
}
.medicon_container{
  width: 80%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 5
}

.btn-text {
    position: relative;
    display: flex;
    flex: 1;
    color: var(--TextColor1);
    font-weight: 500;
}

li:nth-of-type(odd) .texticon {
    background-color: var(--Backgroundbluelight);
    color: var(--TextColor2);
    font-weight: 500;
}

li:nth-of-type(even) .texticon {
    background-color: var(--Backgroundbluelight);
    color: var(--TextColor2);
    font-weight: 500;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--TextColor1);
}

.info-content {
    width: 97%;
    max-width: 600px;
    color: var(--TextColor1);
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: visible;
    position: absolute;
    top: 5%;

}

.info-content.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.info-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}


.info-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 10px;
}

/* ADTsheet styles */
.ADTsheet {
    display: none;
    width: 100%;
    color: var(--TextColor1);
}

.ADTsheet.selected {
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
    margin: 0;
    margin-bottom: 40px;
    overflow-Y:auto;
}
  .Q{
  display: grid;
  color: var(--TextColor1);
  opacity: 0;
  width: 100%;
  grid-template-rows: 0fr;
  transition: opacity 0.5s ease;
  position: relative;
  overflow:hidden;
}

.Q.open{
  grid-template-rows: 1fr;
  width: 100%;
  transition: opacity 0.5s ease;
  opacity: 1;
  position: relative;
  margin-bottom: 10px;
  margin-left: 1%;
  margin-top: 10px;
  overflow: hidden;
}
.Q.actopen{
  grid-template-rows: 1fr;
  width: 100%;
  transition: all 0.5s ease;
  opacity: 1;
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  overflow-x: none;
}

.ACTY .card, .ACTN .card{
  background-color: var(--Backgroundlightgray);
    border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: var(--TextColor1);
}

.card{
  position: relative;
  background-color: var(--Backgroundlightgray);
    border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--TextColor1);
  display: grid;
  width: 100%;
  grid-template-rows: 1fr;
  border-radius: 16px;
  overflow: hidden;
}

.front{
  position: relative;
  display: grid ;
  width: 100%;
  opacity: 1;
  grid-template-rows: 1fr;
  transform: translateX(0%);
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.front ul{
  margin-left: 40px;
}
.front.closed{
  transform: translateX(-100%);
  transition: opacity 0.3s ease;
  display: grid ;
  position: absolute;
  grid-template-rows: 0fr;
  opacity: 0;
}
.front-top{
  width: 100%;
  color:var(--TextColor1);
  display: flex;
}

.acticon{
  font-size: x-large;
}
.Q-icon{
  margin-top: 10px;
  margin-left: 15px;
  position: relative;
  display: flex;
  color: var(--TextColor1);


}
.Qtext{
  width: 100%;
  margin-left: 10px;
  margin-top: 10px;
  color:var(--TextColor1);

}
.Q UL{
  margin-top: 10px;
  color: var(--TextColor1);
}
.Q li{
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 4px;
}
.A{
  width: 100%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;

}

.Abar.closed{
  display: none;
  height: 0;
  background-color: var(--Backgroundsecondgray);
  color: var(--TextColor1);
}
.Abar{
  width: 100%;
  height: 100%;
  margin: auto;
  align-items: center;
  display: flex;
  overflow: hidden;
  background-color: var(--Backgroundmiddlegray);
  color: var(--TextColor1);
  position: relative;
}

.slider.o.yes ~ .Aa.Y{
  font-weight: 500;
  color: var(--TextColor2);
  transition: all 0.3s ease;
  z-index: 9
}
.slider.o.no ~ .Aa.N{
  font-weight: 500;
  color: var(--TextColor2);
  transition: all 0.3s ease;
  z-index: 9;
}

.Aa{
  width: 50%;
  height: 100%;
  padding: 10px;
  text-align: center;
  margin: auto;
  color: var(--TextColor1);
  background-color: transparent;
  position: relative;
  border: none;
  border-radius: 10px;
   z-index:2
}


.slider.o.yes{
  background-color: var(--Backgroundsecondgray);
  border-radius: 0 10px 10px 0;
  transform: translateX(0);
}

.slider.o.no{
  background-color: var(--Backgroundbluelight);
  border-radius: 5px 0 0 5px;
  transform: translateX(100%);
}
.slider{
  position: absolute;
  height: 100%;
  width: 50%;
  transform: translateX(-100%);
  display: block;
  transition: transform 0.3s ease, background-color 0.5s ease;
  will-change: transform;
   z-index: 1;
}
.slider.closed{
  height: 0;
  background-color: var(--Backgroundsecondgray);
}



.dispobox {
  width: 100%;
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  background-color: var(--Backgroundlightgray);
  color: var(--TextColor1);
  transition: opacity 0.4s ease, 
              visibility 0.4s ease;
}

.dispobox.open {
  opacity: 1;
  height: auto;
  max-height: 1000px;
  visibility: visible;
  overflow-y: auto;
}

.dispobox.closed{
  max-height: 0px;
  margin: none;
  visibility: hidden;
  transition: all 0.6s ease;
  animation-delay: 0s;
}

.dispobox li{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 90%;
  text-wrap: wrap;
  margin: 0px, 0px, 15px, 15px 
}

.dispo-top{
  margin-left: 20px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.dispo-icon{
  position: relative;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: red;
}

.dispo-label{
font-weight: 400;
margin-left: 0;
margin-right: 10px;
}

.dispobar{
  height: 100%;
  width: 15px;
  position: absolute;
  overflow: hidden;
}

.action-box{
  display: flex;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
  color: var(--Backgroundlightgray);
  color: var(--TextColor1);

}

.dispobar.RTD{
  height: 100%;
  width: 15px;
  right: 0;
  position: absolute;
}

.contbox{
  width: 95%;
  display: grid;
  grid-template-rows: 1fr;
  border-radius: 10px;
  background-color: var(--Backgroundwhite);
  color: var(--TextColor1);
  border-radius: 10px;
  cursor: pointer;
}
.contbox-close{
  display: flex;
  height: 30px;
  width: 30px;
  margin-left: 6px;
  margin-top: 6px;
  margin-bottom: 6px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 300;
}
.contbox-close i{
  position: absolute;
  display: flex;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.contbox-content{
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  max-height: 200px;
  overflow-y: scroll;
  margin-bottom: 10px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.contbox-content.closed{
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  max-height: 1px;
  overflow: scroll;
  margin: none;
  visibility: collapse;
  transition: all 0.4s ease;
  margin-bottom: 0;
}

.contbox-content ul{
  overflow-y: scroll;
  position: grid;
  width: 90%;
  margin-top: 2px;
  flex-wrap: wrap;
  list-style-type: disc;
  color: var(--TextColor1);
  gap: 1px;
}
.contbox-content li{
  line-height: 1rem;
}

.made ul{
  margin-top: 2px;
  flex-wrap: wrap;
  list-style-type: disc;
  gap: 1px;
}
.made li{
  line-height: 1rem;
  padding-top: 2px;
  padding-bottom: 2px;
}
#redf{
  position: relative;
  width: 100% ;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.prebox{
  height: 100%;
  border-radius: 10px;
  padding-bottom: 5%;
  padding-top: 5px;
  background-color: var(--Backgroundlightgray);
  color:var(--TextColor1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.prebox-close{
  display: flex;
  height: 30px;
  width: 30px;
  margin-left: 6px;
  margin-top: 6px;
  margin-bottom: 6px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.prebox-close.closed{
  transform: rotate(-45deg);
}

.prebox-close i{
  position: absolute;
  display: flex;
  height: 30px;
  width: 30px;
}

.prebox-top{
  display: flex;
  margin-left: 20px;
  text-decoration: underline;
  align-items: center;
  border-radius: 15px;
  height: 100%;
  margin-bottom: 15px;
}
.prebox-content {
  width: 100%;
  opacity: 1;
  visibility: visible;
  background-color: transparent;
  color: var(--TextColor1);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.prebox-content ul{
  margin-top: 2px;
  margin-left: 15px;
  margin-right: 5px;
  line-height: 1.6;
  color:var(--Textcolor1);
}

.sub-page {
  height: 90%;
  width: 100%;
  opacity: 0;
  top: 25px;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: none;
  color: var(--TextColor1);
  transition: opacity 0.3s ease;
}

.medsheet {
  position:absolute;
  margin-top: 10px;
  height: 90%;
  width: 100%;
  top: 25px;
  background-color: var(--Backgroundwhite);
  margin: 0 15px;
  overflow-y: auto;
  color: var(--TextColor1);
  transition: opacity 0.3s ease;
  transform: translateX(100%);
  opacity: 0;
  z-index: 5
}
.medsheet.open {
  transform: translateX(0%);
  opacity: 1;
}
.med_marker{
  height: 2px;
  width: 100%;
}
.med_top{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 70px;
  margin-right: 20px;
  margin-left: 15px;
  margin-top: 0px;
  border-radius: 10px;
  align-items: center;
  padding-top: 10px;
}


.med_banner{
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}
.med_content_li{
  position: relative;
  display: flex;
  margin-left: 15px;
  margin-right: 15px;
  flex-direction: column;
  border-radius: 10px;
  padding-bottom: 10px;
  padding-left: 2px;
}
.med_content_top{
  position: relative;
  display: flex;
  background-color: var(--Backgroundbluelight);
  color: var(--TextColor2);
  padding-top: 5px;
  padding-bottom: 5px;
}
.med_content_top svg{
  fill: var(--Backgroundbluelight);
}
.med_content_close{
  margin-left: 2px;
  height: 25px;
  width: 25px;
}
.med_content_category{
  margin-left: 10px;
}
.med_content_content{
  display: flex;
  flex-direction: column;
  min-height: 10px;
  padding-left: 40px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 10px;
  background-color: var(--Backgroundlightgray);
  color: var(--TextColor1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.3s ease;
}
.med_content_opt{
  margin-top: 2px;
  margin-bottom: 4px;
}

.sub-page.open {
  opacity: 1;
  pointer-events: auto;
}

.sub-page-top{
  overflow: hidden;
  background-color: var(--Backgroundwhite);
  color: var(--TextColor1);
  display: flex;
  border-radius: 20px;
  flex-direction: column;
}



.sub-page-banner{
  min-width: 120px;
  max-width: 300px;
  text-align: center;
}
.sub-page-banner-box{
  position: relative;
  display: none;
}
.sub-page-banner-box.min{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-weight: 500 ;
  margin-top: 2px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}


.bottommarker {
  height: 70px;
  width: 100%;
  bottom: 0;
  margin-bottom: 25px;
  margin-top: 50px;
}

.info-container > .sub-page-pre{
  margin-left: 45px;
  margin-right: 45px;
}

.dispo > .sub-page-pre{
  position: relative;
  margin-bottom: 10px;
  margin-left: 0;
  overflow-y: scroll;
  visibility: visible;
}

.sub-page-pre{
  position: relative;
  margin-top: 10px;
  margin-left: 5px;
  margin-bottom: 10px;
  visibility: visible;
}
.sub-page-pre ul{
  overflow-y: scroll;
  position: grid;
  width: 80%;
  margin-top: 2px;
  margin-left: 15px;
  flex-wrap: wrap;
  list-style-type: disc;
}
#redf ul{
  margin-left: 35px;
  margin-right: 6px;
}
#redf li{
  position: relative;
  padding-top: 2px;
  padding-bottom: 2px;
}
.sub-page-pre li{
  margin-bottom: 4px;
}
.sub-page-pre.blocked{
  visibility: hidden;
  grid-template-rows: 0fr;
  margin-bottom: 0;
}

.dispo{
  margin-left: 30px;
  overflow-y: scroll;
}
.dispo label{
  font-weight: 300;
  margin-left:auto;
  margin-right: auto;
  color: var(--TextColor1);
}

.justbox {
  margin: 0;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.justbox.open {
  margin: 10px 10px 10px 35px;
  border-radius: 10px;
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}
.back1, .back2{
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translateX(100%);
  top: 0;
  transition: all 0.3s ease;
  overflow-y: scroll;
}
.back1.opened, .back2.opened{
  transform: translateX(0%);
  position: relative;
  transition: all 0.3s ease;
  overflow-y: scroll;
}
.back-top{
  height: 30px;
  width: 100%;
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.back-label{
  margin-left: 10px;
  align-self: center;
  display: flex;
}

.just ul{
  height: 100%;
  width: 82%;
  margin-left: 46px;
  margin-bottom: 3%;
  margin-right: 10%;
  overflow-y: scroll;
}
.just li{
  margin-bottom: 5px;
}


.just{
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  max-height: 200px;
  overflow-y: scroll;
  margin-bottom: 10px;
}
.close{
  margin-left: 15px;
  width: 30px;
  height: 45px;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  visibility: visible;
  opacity: 1;
  transition: all 0.1s ease;
}
.close i{
  position: relative;
  display: flex;
  font-size: 1rem;
  align-self: center;
  background-color: transparent;
  justify-self: center;
}

.ACT1, .ACT2, .ACT3{
margin-left: 35px;
margin-top: 0;
margin-bottom: 10px;
}
.DACT{
background-color: var(--Backgroundlightgray);
color: var(--TextColor1)
}
.DR{
background-color: var(--BannerRed);
color: var(--TextColor2)
}
.DI{
background-color: var(--BannerRed);
color: var(--TextColor2)
}
.DII{
background-color: var(--BG2);
color: var(--TextColor1)

}
.DIV{
background-color: var(--Backgroundbluelight);
color: var(--TextColor2)

}
.DRTD{
background-color: var(--Backgroundbluelight);
color: var(--TextColor2)

}
.DRETEST{
background-color: var(--BG2);
color: var(--TextColor1)
}

.iconbutton{
  stroke-width: 1.3;
  display: flex;
  align-items: center;
  /* animation: pulse 5s linear infinite; */
  fill: transparent;
  background-color: transparent;
  stroke: var(--TextColor2);
}
.medicon{
  stroke-width: 1.3;
  display: inline-block;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  fill: transparent;
  stroke: var(--TextColor2);
}

.iconpadding{
  margin: 5px;
}

.submitbottom{
  display: flex;
  visibility: hidden;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.3s ease;
  position: absolute;
}

.submitbottom.open{
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.submitbottom_button{
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  background-color: var(--Backgroundmiddlegray);
  color: black;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
}
@keyframes pulse {
  0%,
  50%,
  100% {
    opacity: 0.6;
  }
  25%,
  75% {
    opacity: 1;
  }
}

@keyframes pulse2 {
  0%,
  50%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  25%,
  75% {
    opacity: 1;
    transform: scale(1.1);

  }
}
.navcont{
  height: 80px;
  width: 100%;
  display: block;
}
.navtop{
  display: flex;
  align-items: center;

}
.navtop-text{
  margin-left: 40px;
}
.icon-cont{
  height: 30px;
  width: 30px;
  margin: 10px 10px 10px 10px;
}

.icon-circle{
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #171a18;
  align-items: center;
  justify-content: center;
  display: flex;
}
.backbutton{
  font-size: xx-large;
  color: white;
  font-weight: normal;
}

.contbox-top{
  display: flex;
  align-items: cenrer;
}

        @media (min-width: 769px) {
            .desktop-note {
                display: block;
            }
        }
.bg4 {
 border-radius: 10px;
    background-color: var(--Backgroundbluelight);
    color: var(--TextColor2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 97%;
    margin-left: 1.5%;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* Default visible state */
    opacity: 1;
    visibility: visible;
    height: 8%;
    min-height: 50px;
    bottom: 2%;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

        .bg-helper{
          position: absolute;
          display: flex;
          height: 100%;
          z-index: 9;
          width: 100%;
          opacity: 0;
          background-color: transparent;
          visibility: hidden;
          transition: opacity 0.5s ease;
        }
        .bg-helper.faded{
          display: flex;
          height: 100%;
          z-index: 9;
          width: 100%;
          opacity: 1;
          background-color: var(--Backgroundwhite);
          transition: all 0.5s ease;
          visibility: visible;

        }
.bg4.closed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 8%;
    min-height: 50px;
    bottom: 2%;
    width: 97%;
    margin-left: 1.5%;
}
        
.bg4:not(.closed) {
    opacity: 1;
    visibility: visible;
    height: 8%;
    min-height: 50px;
    bottom: 2%;
    cursor: pointer;
}
        
.bg4.keyed {
    height: 40%;
    bottom: 10%;
    overflow: hidden;
}
.bg4.copied {
    height: 85%;
    bottom: 10%;
    overflow: hidden;
}
.bg4.closing {
    height: 40%;
    bottom: 30%;
    overflow: hidden;
}
        
        .item-box {
            display: none;
            visibility: hidden;
            width: 100%;
            height: 100%;
            padding: 15px;
            flex-direction: column;
            gap: 5px;
            opacity: 0;
            position: relative;
            transition: opacity 0.3s ease;
        }
        
        .bg4.keyed .item-box {
            display: flex;
            opacity: 1;
            visibility: visible;
            color: white;
            transition: opacity 0.3s ease;
        }

        .bg4.closing .item-box,
        .bg4.copied .item-box {
            display: none;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .item-tag {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 15px;
            border-radius: 10px;
        }
        
        .item-tag input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--Backgroundbluelight);
        }
        
        .item-tag label {
            font-weight: 400;
        }
        
        .panel-title {
            font-weight: 400;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .bg4.keyed .panel-title,
        .bg4.copied .panel-title, 
        .bg4.closing .panel-title{
            display: none;
        }
        .copy-button {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 45px;
            padding: 12px 20px;
            background-color: var(--Backgroundmiddlegray);
            color: var(--TextColor1);
            border: none;
            border-radius: 0 0 10px 10px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .copy-button:hover {
            background-color: var(--Backgroundmiddlegray);
            color: var(--TextColor1);
        }
        
        .notification-text {
            display: none;
            font-weight: 400;
            text-align: center;
            padding: 20px;
        }
        
        .bg4.closing .notification-text {
            display: block;
        }
        
        .checkboxes-container {
            flex: 1;
            padding-bottom: 45px; /* Space for the button */
        }
        #cont2{
          position: absolute;
          transition: all 0.3s ease;
        }
.info-container {
    width: 95%;
    height: 90%;
    background-color: var(--Backgroundlightgray);
    border-radius: 10px;
    position: absolute;
    color: black;
    overflow-x: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Minimal box-shadow */
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* Start hidden */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.info-container.active {
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    overflow-y: auto;
}
       .infobox-close i{
            align-items: center;
            justify-content: center;
            position: absolute;
        }
       .info-top-box{
        position: relative;
        max-height: 45%;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 12px;
      }
      .info-title{
        position: relative;
        width: 80%;
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-weight: 500;
      }
      .info-box-body{
        width: 100%;
        height: 85%;
        margin-bottom: 10px;
      }
      .info-gen{
        text-align: center;
        display: block;
        margin-bottom: 20px;
      }
      .info-gen li{
        width: 90%;
        margin-left: 5%;
      }
      .sub-page-banner-box{
        display:none;
}
.SOAPsoap{
  font-weight: 500;
}
.SOAPbox{
  height: 90%;
  width: 97%;
  margin-left: 2.5%;
  margin-top: 2.5%;
  margin-bottom: 2.5%;
  padding-bottom: 40px;
  overflow-y: scroll;
  color: white;
}
.SOAPdate{
  margin-bottom: 10px;
}
.SOAPtitle{
  margin-bottom: 10px;
  font-weight: 500;
}

.rf_list{
  display: flex;
  flex-direction: column;
}
.rf_list.no{
  display: none;
}
.rf_list li{
  margin-top: 2px;
  margin-bottom: 2px
}
.query_answer{
  list-style-type: none;
  padding-bottom: 2px;
}
.SOAPgroup{
  margin-top: 10px;
}
.SOAPbreak{
  position: relative;
  height: 2px;
  background-color: red;
  margin-top: 2px;
  margin-bottom: 2px;
  width: 95%;
}
.SOAPref{
  margin-top: 10px;
  width: 95%;
}
.ref_ul{
  margin-top: 10px;
}

.transition-div {
  transition: opacity 0.3s ease-in-out;
}

