.teams-section-container{
    min-height: 90vh;
    display: flex;  
    background-color: rgba(208, 207, 207, 0.296);
}

.teams-sidebar{
    width: 30%;
    max-height: 90vh;
    overflow-y: scroll;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.teams-main-content{
    width: 70%;

}
.teams-close-container{
    width: 100%;
}
.teams-close-container div{ 
   cursor: pointer;
}
/* End of General outline */

/* Team Sidebar Header */
.teams-sidebar-header{
    width: 100%;
    padding: 1rem 0.5rem;
}

.teams-sidebar-header h1{
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: underline;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem;
}


.teams-sidebar-header div{
display: flex;
/* gap: 2px; */
align-items: center;
border: 4px solid #d0d092;
}
.teams-sidebar-header div span{
height:2.5rem ;
padding: 0.5rem;
width: 10%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;

}
.teams-sidebar-header div input{
background-color: transparent;
width: 90%;
height: 2.5rem;
border: none;
padding-left: 0.5rem;
}
/* End of Team Sidebar Header */


/* Team Card Styles */
.teams-card-list{
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 1rem 0;
    padding: 0.5rem;
}

.team-card{
    width: 90%;
    height: 8rem;
    border-radius: 5px;
    background-color: #d0d0964d;
    display: flex;
    flex-direction: column;
    padding: 8px 5px;
    justify-content: space-evenly;
    cursor: pointer;
    
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(5px);
    transition: all 0.2s;

}
.team-card:hover{
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.01);
}

.team-card-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 2px;
    padding: 2px 5px;
}
.team-card-top .team-card-img{
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    margin-right: 3px;
}
.team-card-top  span{
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0 2px;
    font-variant: small-caps;
}
.team-card-bottom{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    gap: 2px;
    padding: 2px 5px;
}
.team-card-role{
    background-color: #BBBF4B;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-style: italic;
    color: #000;
    font-variant: small-caps;
}

.team-card-contact{
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    font-style: italic;
}
/* End Team Card Styles */

/* Main Content Style */
.teams-main-content .teams-project-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.header-content-left{
    display: flex;
    align-items: center;
    gap: 15px;
    
}

.header-content-img{
    border-radius: 100%;
    width: 4rem;
    height: 4rem;
}

.header-content-left div{
    font-size: 2rem;
}

/* End of Content Style */

/* Table Filter Left */
.table-filter-left{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d0d092;
    border-radius: 5px;
}
.table-filter-left span{
    height:2.5rem ;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    
    }
    .table-filter-left input{
    background-color: transparent;
    /* width: 90%; */
    height: 2.5rem;
    border: none;
    padding-left: 0.5rem;
    }
/*  End of Table Filter Left */

/* Table Filter Middle */
.table-filter-middle{
    /* width: 30%; */
    display: flex;
    align-items: center;
    /* gap: ; */
    /* padding: 0.2rem; */
    border: 2px solid #d0d092;
    border-radius: 5px;

}
.table-filter-middle span{
    padding: 0.5rem;
}
.table-filter-middle select{
    padding: 0.5rem;
    background-color: transparent;
    border: none;
    outline: none;
    color: #BBBF4B;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  
}
/* End of Table Filter Middle */



/* Table Filter Right */
.table-filter-right{
    display: flex;
    align-items: center;
    gap: 8px;
}

.ti-menu-alt{
    font-size: 2.2rem;
}
.ti-layout-grid2{
    font-size: 2rem;
}
/* End ofTable Filter Right */

/* Table of Projects Styles */
.teams-main-table-list{
    width: 100%;
    min-height: 35rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}
.teams-main-table-filter-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #ffffff7d;
    margin: 5px;
    border-radius: 6px;
}


#teams-table{
    background-color: #ffffff7d;
    margin: 15px 5px;
    border-radius: 6px;
}
#teams-table header{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    /* background-color: red; */
    text-align: center;
    padding: 0.5rem 0;
    font-size: medium;
    font-weight: 600;
    /* border-top: 1px solid #0000001f; */
    border-bottom: 1px solid #0000001f;
    margin-bottom: 15px;
}

#teams-table header > div{
 border-right: 2px solid #00000060;
}
#teams-table header > div:last-child{
 border-right: none;
}

.teams-main-table-list-row{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    text-align: center;
    align-items: center;
    padding: 0.5rem ;
    /* font-size: medium;
    font-weight: 600; */

    /* border: 1px solid #00000021; */
    border-radius: 5px;

}


.teams-main-table-grid{
    width: 100%;
    min-height: 35rem;
    display: grid;
    grid-template-columns:repeat(4,1fr) ;
    gap: 7px;
    border: 1px solid red;
}
.teams-main-table-grid-row{

}


/* End of Table of Projects Styles */


.shimmer{
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        #e0e0e0 25%,
        #f0f0f0 50%,
        #e0e0e0 75%
      );
    animation: shimmer 1.5s infinite;
}

/* Shimmer animation */
@keyframes shimmer {
    0% {
      background-position: -200px 0;
    }
    100% {
      background-position: 200px 0;
    }
  }