/* styles.css */
.team-member {
    margin-bottom: 30px;
    text-align: center;
}

.member-photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px; /* Set a fixed height for the photo container */
    transition: height 0.3s ease-in-out;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Center the image within the container */
}

.member-details {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.member-details h4 {
    margin-bottom: 10px;
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
}
.row{
	margin-top: 20px;
}
