*{
    padding: 0px;
    margin: 0px;
    font-family: Times New Roman;
    font-size: 16px;
 }
 html, body {
     width: 100%;
     height: 100%;
 }
/************menu section***************/
.menu_container{
    color: white;
    background-color: black;
    display:flex;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
}
.menu_logo{
    display: flex; 
    width: 150px;
    height: 50px;
} 
#initialLogo {
    width: 100%;
    height: 100%;
}
.menu_items{
    display: flex;
    flex-direction: row;
}
.menu_items li{
    list-style: none;
    margin-left: 40px;
    font-size: 20px;
}
/************end of menu section***************/
.landing_page_body{
    display: flex;
    flex-flow: row;
}

#first_line{
    margin-top: 100px;
    text-align: center;
}

#first_line p{
    display: inline;
    font-size: 40px;
}

#second_p{
    color: orange;
}

.image_text p{
    margin-top: 50px;
    font-size: 30px;
    text-align: center;
}
.discovery_cover{
    background-color: orange;
    border-radius: 20px;
    height: 0 auto;
    width: 170px;
    position: fixed;
    right: 10px;
    bottom: 20px;
}
.discovery_cover:hover{
    background-color: orangered;
}
#discover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}
#a_tag { 
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#body_section{
    display: flex;
    height: calc(100% - 100px);
}

#left_body{
    width: 250px;
    background-color: #333;
    padding: 20px;
    height: 100%;
}

#right_body{
    flex-grow: 1;
    padding: 20px;
    background-color: #f4f4f4;
    width: 100%;
    height: 100%;
}

#right_body iframe{
    width: 100%;
    height: 100%;
}

#left_body li{
    justify-items: center;
    list-style-type: none;
    margin: 5px 0px;
    border: 1px solid black;
    padding: 10px 5px;
    text-align: center;
    color: white;
    background-color:chocolate;
    border-radius: 5px;
}

#left_body li:hover{
    background-color:black;
}

.btnConfirm{
  width: 250px;
  margin: 5px 0px;
  border: 1px solid black;
  padding: 10px 5px;
  text-align: center;
  color: white;
  background-color:chocolate;
  border-radius: 5px;
}

.btnConfirm:hover{
    background-color:black;
}


#left_body li a{
    text-decoration: none;
    color:#fff;
}

#right_body{
    border: 1px solid red;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh-100px);
}

#right_body p{
    font-size: 30px;
    text-align: center;
}

#right_body .table p{
    font-size: 20px; 
}

.table {
    display: flex;
    flex-wrap: wrap;
}

.row {
    width: 100%;
    display: flex;
    margin-bottom: 10px; /* Adjust as needed for spacing between rows */
}

.column-left {
    width: 20%;
   
    border: 1px solid #ccc;
}

.column-right {
    width: 80%;
    
    border: 1px solid #ccc;
}

.hidden {
    display: none;
}

/* Add a class to make the right_body full screen */
.fullscreen {
    width: 100%;
}

.show {
    display: block;
}
#crossButton {
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}

#toggleButton{
    background-color:gray;
}

.whole_body{
 width: 100%;
 height: 100vh;
}
