body {
    margin: 0;
    padding: 0;
}
p,ul,ol,li {
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    color: #eee;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
    font-style: normal;
}
h2,h3,h4,h5,h6 {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
    font-style: normal;
}
#controls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 120px;
    background-color: #39664b;
    padding-top: 20px;
    z-index: 1000;
    color: white;
}
@media (max-width: 1200px) {
    #controls {
        height: 140px;
        margin: 0 auto;
    }
}
#controls h1 {
    text-align: center;
}
#controls form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}
#controls input {
    padding: 5px;
    margin: 5px;
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#controls input[type="text"] {
    width: 400px;
}
#controls input[type="submit"] {
    background-color: #ab420a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}
#autocomplete-items {
    display: none;
    position: fixed;
    background-color: #ffffff;
    z-index: 1001;
    height: 200px;  /* Add this line to limit the height of the dropdown */
    overflow-y: auto;  /* Add this line to enable scrolling */
    padding: 5px;
    
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#autocomplete-items div {
    padding-left: 10px;
    margin-top: 3px;
    margin-bottom: 6px;
}
#autocomplete-items a {
    background-color: #ffffff;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#autocomplete-items .detailPageLink {
    display: none;
}
#graph {
    position: fixed;
    top: 140px;
    width: 100vw;
    height: 100vh;
    background-color: #eee;
}
#copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    padding: 10px;
    z-index: 1000;
    color: #444444;
    text-align: center;
    font-size: 0.8em;
    
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
}
g.link line {
    stroke-width: 1;
    stroke: #5a5757;
    stroke-opacity: 0.3;
}
g.node .node-company {
    fill: #ab420a;
    fill-opacity: 1;
    stroke: #192c1d;
    stroke-width: 4px;
    r: 7px;
}
g.node .node-person {
    fill: #39664b;
    fill-opacity: 1;
    stroke: #192c1d;
    stroke-width: 4px;
    r: 7px;
}
g.node .hitbox {
    r: 25px;
    fill: none;
    stroke: lightgray;
    stroke-width: 1;
    stroke-dasharray: 3;
    pointer-events: all;
    cursor: pointer;
}
g.node .node-label {
    text-anchor: middle;
    font-size: 12px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 300;
    font-style: normal;
}
.plus-icon {
    color: blue;
}
.minus-icon {
    color: red;
}
#pause {
    position: fixed; 
    bottom: 0; 
    right: 0; 
    z-index: 1010; 
    padding: 10px;
}
#header {
    width: 100vw;
    height: 120px;
    background-color: #39664b;
    padding-top: 20px;
    color: white;
    text-align: center;
}
#content {
    max-width: 80vw;
    margin: 0 auto;
    margin-bottom: 80px;
}
@media (min-width: 1200px) {
    #content {
        max-width: 600px;
    }
};
.centered {
    text-align: center;
}
#feedbackForm textarea {
    width: 100%;
    height: 100px;
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#feedbackForm button {
    background-color: #ab420a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}
#feedbackForm button:disabled {
    background-color: gray;
}
.modeButton {
    margin-left: 0px;
    margin-right: 0px;
    background-color: rgb(102, 103, 104);
    color: white;
    border: none; /* Remove the border */
    padding: 10px 20px;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    text-decoration: underline;
}
.modeButton.active {
    background-color: rgb(57, 81, 102);
}