.team-member-popup {
    display: none;
    width: 400px; 
    padding: 20px;
    background-color: #fff;
    border: 2px solid #007BFF; 
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); 
    position: relative; /
}

.team-member-popup img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}


.team-member-popup .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}


.team-member-popup .close-button:hover {
    background-color: #0056b3;
}


.view-details-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.view-details-btn:hover {
    background-color: #0056b3; 
}
