/* Timeline table layout */
.timeline-table {
    width: auto;
    border-collapse: collapse;
    margin: 40px auto;
}

.timeline-table td {
    padding: 0;
    text-align: center;
    vertical-align: middle;
}

td img.band {
    vertical-align: middle;
}

/* Band SVG style */
.timeline-table .band {
    width: 150px;
    height: 70px;
    overflow:hidden; /* to prevent transparent part of png resizing row */
    display: block;
    margin: 0 auto;
    border-radius: 0;
}

/* Curve SVG style */
.timeline-table .curve {
    height: 300px;
    display: block;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
    overflow: hidden;
    border-radius: 0;
}

/* Bio image style */
.timeline-table .bio-pic {
    width: 150px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-height: 250px;
    overflow:hidden;
}

.timeline-table .bio-pic:hover {
    transform: scale(1.05);
}
