.scientist-profile {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.scientist-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0; /* Prevents the image from shrinking */
}

.scientist-info {
    flex-grow: 1;
}

.scientist-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}
