.square{
    stroke: black;
    stroke-width: 1px;
}
.square:hover{
    cursor: pointer;
}
.icon{
    stroke-width: 2px;
    fill: none;
}
#tree{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.tree-grid{
    padding: 10px;
}
.tree-grid p{
    margin: 0px;
    text-align: center;
}
.text{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
}
.flex-center{
    display: flex;
    justify-content: center;
}

.button-container{
    padding: 5px;
}
.button{
    border: 1px solid lightgray;
    background-color: rgb(224, 224, 224);
    cursor: pointer;
    transition: 0.2s linear;
    white-space: nowrap;
    padding: 2px 15px 2px 15px;
    border-radius: 5px;
    font-size: 17px;
    width: fit-content;
}
.button:hover{
    background-color: white;
    border: 1px solid darkgray;
}