#peopleTable {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-x: auto;
}


#allumniTable {
    overflow-x: auto;
    scrollbar-width: thin;
}

.tablerowpadding{
    padding: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}



tr:nth-child(even) {
    background-color: #bed3b4;
}

th,
td {
    padding: 8px;
    text-align: left;
}

th {
    color: white;
    background-color: #4CAF50;
}



.profileImage {
    width: 200px;
    max-height: 100%;
    object-fit: contain;
}

#person-detail {
    max-width: 200px;
    margin-right: 20px;
}

#detailsContent {
    display: inline-flex;
    padding: 20px;
    align-items: center;
}

.Border {
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 500px;
}

.scrollable {
    overflow-x: auto;
}

.person-div {
    display: flex;
    margin-bottom: 50px;
    flex: 0 0 40%;
    height: 200px;
    max-width: 40%;
    padding: 20px;
    min-width: 400px;

    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.person-div:nth-child(odd){
    margin-right: 20px
}

.empty {
    border: none;
    background: none;
    box-shadow: none;
}

.project-container {
    display: flex;
    align-items: flex-start;
}

.project-container p {
    margin-top: 0;
}

.project-links {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    max-height: 100px;
}

.project-links a {
    text-decoration: none;
}

.project-links ul {
    margin: 0;
}

.person-link {
    text-decoration: none;
    color: black;
}

.person-div a {
    height: 100%;
}

.person-info {
    margin-left: 20px;

}

.peopleTable-container {
    width: fit-content;
}