.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    background-color: #fdfdfd;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    /* border: 1px solid #ccc; */
    border-top: none;
  }
.tabcontent > li > a{
    text-decoration: underline;
}
  /* project details page css */
  .project_detail_page{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    position: relative;
    /* min-height: 100vh; */
    margin: 5% 0%;
}
.project_detail_container{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* flex-direction: column; */
}
.project_detail_row{
    width: 70%;
    display: flex;
    flex-direction: column;
}
.project_detail_body, .project_detail_content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    line-height: 1.7em;
}
.project_detail_content table{
    width: 100%;
}
.project_detail_content tr td, .project_detail_content tr th{
    padding: 2% 2%;
    text-align: left;
    /* width: 20%; */
    /* border-bottom: 1px solid #ccc ; */
    border-top: 1px solid #ccc ;
}
.project_detail_content tr td img{
    width: 100%;
    height: 100%;
}
.factsheet tr td:first-child {
    width: 30%;
}
.project_detail_content img{
    width: 100%;
    height: 100%;
}
.project_detail_image img{
    width: 100%;
}
.project_detail_content h2{
    padding-bottom: 0%;
}
.project_detail_content li{
    list-style: disc;
}
.project_heading_details{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.project_heading_status{
    padding: 1%;
    display: flex;
    color: white;
    font-weight: bold;
}
.Ongoing{
    background-color: orange;
}
.Completed{
    background-color: #00a651;

}

@media (max-width: 768px) {
    .project_detail_container{
        flex-direction: column;
    }
    .project_detail_row{
        width: 100%;
    }
}