body {
  font-family: "Inter", Tahoma, sans-serif;
  font-style: normal;
  color: var(--text);
}

h1 {
  font-size: 30px;
  font-weight: bold;
  color: var(--header);
}

.alt-text {
  color: var(--alt-text);
  font-weight: medium;
}

input {
  background: #13121a;
  color: #bbc1f7;
  border-color: rgba(215, 216, 222, 0.15);
  border-radius: 8px;
}

html {
  background: var(--background);
}

.container {
  background: var(--container);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
  border-radius: 15px;
  padding: 20px 40px 20px 40px;
}

.no-padding {
  padding: 0 0 0 0;
}

button {
  margin-top: 15px;
  color: white;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 16px;
  border: none;
  line-height: 17px;
  padding: 10px 50px 10px 50px;
  cursor: pointer;
  background: var(--btn-bg);
  border-radius: 4px;
}

button:disabled {
  background-color: #717ccf38;
  cursor: not-allowed;
  color: var(--text);
}

button:active {
  background-color: #3e50f7;
  border: none;
}

.btn-alt,
.btn-alt:active,
.btn-alt:focus-within {
  background: none;
  color: var(--alt-text);
  position: initial;
  border: 2px solid var(--alt-text);
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: none;
}

::-webkit-scrollbar {
  background: none;
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #c3c3d6;
  width: 5px;
}

.table {
  margin-top: 20px;
  overflow: auto;
  display: block;
}

.table th {
  font-size: 14px;
  color: #9a99a5;
  font-weight: bold;
}

.table td {
  color: 7179b7;
  font-weight: medium;
}

.table tbody tr {
  line-height: 30px;
  cursor: pointer;
}

#explainer {
  font-size: 12px;
}

.table thead,
.table tbody {
  width: 100%;
}

.table th,
.table td {
  padding-right: 20px;
  text-align: left;
}

.table td:last-child {
  padding-right: 0;
}

.toasts > .toast > .content {
  color: var(--text) !important;
  font-family: "Inter", Tahoma, sans-serif !important;
  font-style: normal !important;
  font-weight: medium !important;
  font-size: 16px !important;
}

.toasts > .toast {
  border-radius: 5px;
  box-shadow: 0px 2px 6px rgba(30, 27, 82, 0.12);
}

.toasts > .toast > .progress {
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

a {
  text-decoration-color: var(--primary);
  color: var(--primary) !important;
}

/* quill */
#editor h1 {
  color: black !important;
}

/* validator description */
.description {
  background: var(--container);
  border-radius: 8px;
  padding: 1em;
  margin-top: 10px;
  max-height: 250px;
  overflow-y: scroll;
  background: white;
  color: rgb(41, 41, 41);
  font-size: 18px;
  line-height: 32px;
}

.description a {
  color: blue !important;
}
