.orgtree {
    width: 100%;
    margin: 8px 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.orgtree .links {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-left: 8px;
}
.orgtree .link {
    color: rgb(1, 144, 206);
    text-decoration: underline;
    font-size: 80%;
    cursor: pointer;
}
.orgtree .link i::before{
    padding-right: 3px;
    font-size: 100%;
}

.orgtree .insblock {
    margin: 4px 0;
    padding: 0;
    background-color: #fff;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
    box-shadow: 2px 2px 8px #cd9575;
}

.orgtree .insblock .institute {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    cursor: pointer;
}

.orgtree .insblock .institute .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.orgtree .insblock .institute .header .insname {
    color: green;
    font-weight: 500;
}

.orgtree .insblock .institute .header .insdesc {
    font-size: 80%;
    color: gray;
}

.orgtree .insblock .chrblock {
    display: none;
    padding-left: 30px;
    border-top: 1px solid #9c9c9c;
}

.orgtree .insblock .chrblock.expanded {
    display: block;
}

.orgtree .insblock .chrblock .cohort{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
}

.orgtree .insblock .chrblock .cohort .header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.orgtree .insblock .chrblock .cohort .action i.linked {
    color: rgb(64, 240, 0);
}

.orgtree .insblock .chrblock .cohort .action i.pending {
    color: steelblue;
}

.orgtree .insblock .chrblock .cohort .action i.rejected {
    color: red;
}

.orgtree .insblock .chrblock .cohort .chrname {
    color: rgb(57, 57, 57);
    font-weight: 400;
}

.orgtree .insblock .chrblock .cohort .chrdesc {
    font-size: 80%;
    color: gray;
}

.orgtree .insblock .chrblock .cohort .chryear {
    font-size: 80%;
}

@media screen and (max-width: 950px) {

}
