html, body {
    height: 100vh;
    margin: 0;
    font-family: monospace;
    overflow: hidden;

}
.navbar {
    height: 100vh;
    width: 400px;
    position: fixed;
    top: 10px;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    padding-top: 30px;
}
.navbar a {
    padding: 5px 30px;
    padding-left: 100px;
    text-decoration: none;
    font-size: 18px;
    color: rgb(0, 0, 0);
    display: block;
    transition: color 0.1s ease;

}
.navbar a:hover {
    background-color: white;
    color: rgb(0, 130, 153);
}
.content {
    margin-left: 400px;
    padding: 20px;
    height: 100%;
    padding-bottom: 0px;
}

#mynetwork {
    width: 100%;
    height: 83vh;
    border: 1px solid rgb(240, 239, 239);
}

h1 {
    color: rgb(0, 130, 153);
}

.split-container {
  display: flex;
  width: 100%;
  height: 95%;
  gap: 1rem;    /* optional spacing */
}
/* side-by-side (vertical divider) */
.split-container.vertical {
  flex-direction: row;
}

/* stacked (horizontal divider) */
.split-container.horizontal {
  flex-direction: column;
}

.split-half-left {
    overflow-y:auto;
    flex: 7;
}
.split-half-right {
    overflow-y: hidden;

    flex: 3;
    height:100%;
}
ul li {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    list-style: none;
    transition: color 0.1s ease;
}

ul li:hover {
    color: rgba(1, 123, 145);
}
#topic-description {
      /* preserve newlines as line breaks */
      white-space: pre-wrap;
    }

a.link {
    text-decoration: underline;
    color: rgb(0, 0, 0);
    transition: color 0.1s ease;
    color: rgb(0, 130, 153);

}
a.link:hover {
    background-color: white;
    color: rgb(0, 75, 88);

}
ul.work{
    padding: 0;
    margin: 0;
    list-style-type: none;
}