.tree {
    text-align: center;
    display: flex;
    width: 100%;
    flex-direction: row;
//align-items: flex-start;
    align-items: center;
}
.tree a{font-size: 14px;}
.tree p{font-size: 16px}
.generation {
    display: block;
    max-width:250px;
    min-width:250px;
}

.individual {
//margin: 20px;
    //padding: 5px;
}
.highlighted{
    background-color: #FFFF61;
}

.man {
    margin-left: 2px;
    background-color: #E6DFDB; /* Světle šedá barva jako příklad */
}
.woman {
    margin-left: 2px;
    background-color: white; /* Světle šedá barva jako příklad */
}

hr.gene{
    border: 1px solid #524341;
}

@media (max-width: 800px) {
    .tree{
        width: 50%;
    }
    .tree a{font-size: 12px}
    .tree p{font-size: 15px}
    .generation {
        display: block;
        max-width:100px;
        min-width:100px;
    }
    .individual {
        padding: 2px;
    }
}