.staff-list{
    width: 100%;
    height: fit-content;
    /* background-color: red; */
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    padding-bottom: 30px;
    user-select: none;
}

.staff-list-box{
    max-width: 1200px;
    width: 100%;
    height: fit-content;
    /* background-color: blue; */
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    justify-content: center;
    gap: 30px;
}

.staff-card{
    width: 210px;
    height: fit-content;
    padding-bottom: 20px;
    background-color: rgb(225, 106, 255);
    box-shadow: 0px 0px 50px 3px rgba(128, 0, 128, 0.493);
    border-radius: 10px;
    border-bottom: 4px solid purple;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    align-items: center;
    gap: 15px;
}

.staff-card .avatar img{
    height: 100%;
}

.staff-card .avatar{
    width: 100%;
    height: 130px;
    /* background: red; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 20px 10px;
}

.staff-role{
    font-weight: 600;
    padding: 1px 10px;
    border-radius: 5px;
    color: white;

}

.staff-name{
    font-weight: 600;
    font-size: 19px;
}

/* color: black;
    background-color: rgb(225, 106, 255);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    padding: 15px 30px;
    font-weight: 600;
    border-bottom: 4px solid purple;
    box-shadow: 0px 0px 50px 3px rgba(128, 0, 128, 0.493);
    transition: all 0.1s;
    border-radius: 10px; */

