:root {
  --color-1: #1976d2;
  --color-error: #d32f2f;
}
.bg-color1 {
  background-color: var(--color-1);
}
.bg-color-error {
  background-color: var(--color-error);
}
.text-color1 {
  color: var(--color-1);
}
.text-color-error {
  color: var(--color-error);
}
.link-btn {
  background-color: transparent;
  display: inline-block;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  margin-right: 5px;
  margin-left: 5px;
  color: #1976d2;
  font-weight: normal;
  &:hover {
    background-color: transparent !important;
    color: #000 !important;
    text-decoration: underline;
  }
}
.link-btn:hover {
  background-color: none;
  border: none;
  cursor: pointer;
  color: #000;
}
textarea[name="audit[urls]"] {
  height: 400px;
}

.navigation {
  flex: 1 0 13rem;
  padding-top: 1rem;
}
.navigation__link:not(:last-of-type){
  margin-bottom: 3px;
}

textarea[name="form[html]"] {
  height: 400px;
}