body {
  font-family: "SF Pro Display", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

ul.links a {
  text-decoration: none;
}

ul.links li {
  font-size: 1.2rem;
}

ul.links li.clicked {
  color: green;
}

ul.links li.pending {
  color: orange;
}

ul.links li.inactive {
  text-decoration: line-through;
  color: gray !important;
}

input[type="submit"] {
  cursor: grab;
}

button {
  cursor: grab;
}

button.urlbutton {
  text-decoration: underline;
  background: transparent;
  border: none;
  font-size: 1rem;
  color: darkslategray;
}

button.deletebutton {
  color: red !important;
}

table.trackers {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

table.trackers th, table.trackers tr, table.trackers td {
  border: 1px solid gray;
}

a.headerlink {
  color: darkslategray;
}

small#copyconfirm {
  color: darkslategray;
}

button#copylink {
  padding: 4px;
  border: 2px dashed darkcyan;
}

p.expiredtext {
  font-size: 1.15rem;
}
p.destinationlink {
  word-break: break-all;
  word-wrap: break-word;
  white-space: normal;
  line-height: 0.8rem;
}
a.destinationlink {
  font-size: 0.7rem;
}

a.biglink {
  font-size: 1.2rem;
}

input.apply {
  font-size: 1.2rem;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #10101a;
    color: white;
  }

  a {
    color: #c0d2ff;
  }

  ul.links li.clicked {
    color: lightgreen;
  }

  ul.links li.pending {
    color: #ffc861;
  }

  ul.links li.inactive {
    text-decoration: line-through;
    color: lightgray !important;
  }

  button.urlbutton {
    color: #b6bebe;
  }

  button.deletebutton {
    color: #ff3131 !important;
  }

  a.headerlink {
    color: #b6bebe;
  }

  small#copyconfirm {
    color: #b6bebe;
  }
}