

 #team{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    background-color: whitesmoke;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.header_fixed {
    max-height: 100vh;
    width: 100%;
    /* display: flex;
    justify-content: center; */
    align-items: center;
    overflow: auto;
    border: 1px solid #dddddd;
    transition: 0.3s ease all;
}

.header_fixed thead th {
    position: sticky;
    top: 0;
    background-color: black;
    color: #e6e7e8;
    font-size: 15px;
    transition: all 0.5s ease;
    
}

th,
td {
    border-bottom: 1px solid #dddddd;
    padding: 10px 20px;
    font-size: 14px;
}

td img {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    border: 5px solid #e6e7e8;
    background-color: aliceblue;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

tr:nth-child(odd) {
    background-color: #edeef1;
}

tr:hover td  {
    color:#fab702;
    background-color: black;
    cursor: pointer;
    transition: 0.5s ease all;
    /* background-color: #ffffff; */
}
tr:hover td button{
    background-color:#fab702;
    color: black;
    transition: 0.5s ease;
}
tr:hover td img{
    border-color: #fab702;
    transition: 0.5s ease;
}

td button {
    border: none;
    padding: 7px 20px;
    border-radius: 20px;
    background-color: black;
    color: #e6e7e8;
}

/* ::-webkit-scrollbar {
    width: 10px;
} */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(230, 219, 17, 0.3);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}