body {
  padding: 0;
  margin: 0;
}

.node {
  stroke: #fff;
  fill:#ddd;
  stroke-width: 1.5px;
}

.link {
  fill: none;
  stroke: #ccc;
  stroke-opacity: .6;
}

marker {
  stroke: #999;
  fill:rgba(124,240,10,0);
}

.node-text {
  font: 20px sans-serif;
  fill:black;
}

.node-text-object {
  font: 32px sans-serif;
  fill:black;
  margin-left: 30px;
}

.link-text {
  font: 9px sans-serif;
  fill:grey;
}

svg{
  background-color: #f7f7f7;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: absolute;
  top: 0;
  text-align: left;
  background: #272727;
  padding-left: 20px;
  padding-right: 20px;
  color: white;
  width: 250px;
  font-family: sans-serif !important;
  height: 100%;
}

.selectBox {
  width: 100% !important;
  display: grid;
  color: #272727 !important;
}

.selectSpan {
  margin-bottom: 5px;
  color: #fff;
}

#keywordFilter {
  color: #272727;
}

li {
  font-family: sans-serif !important;
}

.help {
  font-size: 14px;
  line-height: 1.2rem;
  position: absolute;
  bottom: 30px;
}

.controlsContainer {
  position: fixed;
  bottom: 40px;
  right: 40px;
}

.controls {
  background-color: #444;
  color: #fff;
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 32px;
  margin-left: 20px;
  cursor: pointer;
}

.controls:hover {
  background-color: #666;
}

.controls:active {
  background-color: #555;
}

.dangerContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.danger {
  text-align: center;
  background-color: #b10000;
  color: #fff;
  border: 1px solid #ffe9e9;
  height: 100px;
  width: 100px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.danger:hover {
  background-color: #a70707;
}

.danger:active {
  background-color: #7e0000;
}

.filterButton {
  border: 0;
  font-size: 14px;
  height: 28px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  background: #e8e8e8;
  margin-bottom: 10px;
  cursor: pointer;
}

.filterButton:hover {
  background-color: #ddd;
}

.filterButton:active {
  background-color: #bbb;
}

.heart {
  width: 15px;
  height: 15px;
  margin-top: 30px;
}

.twitter-link {
  color: #fff;
}

#CraftarAPIKey {
  padding: 7px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
#graphControls {
  display: none;
  flex-direction: column;
  grid-gap: 20px;
}
#setupGraph {
  height: 36px;
  border-radius: 6px;
  border: 1px solid #02517c;
  background: #1f9bdf;
  color: #fff;
  font-size: 16px;
  font-family: helvetica;
  font-weight: 600;
  cursor: pointer;
}
#setupGraph:hover {
  background: #097ebe;
}