@font-face {
  font-family: "bebas-neue";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("../fonts/bebasneue-regular.woff2") format("woff2"),
    url("../fonts/bebasneue-regular.woff") format("woff");
  font-display: swap;
}

:root {
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  --emph-font: "bebas-neue", sans-serif;
}

.styled-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
  background-color: #d4af37;
  color: #ffffff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #d4af37;
}

body {
  font-family: var(--font);
  background-color: #f2f2f2;
  margin: 0;
}

a {
  text-decoration: none;
  color: #d4af37;
}

.content {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn {
  font-family: var(--emph-font);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  align-items: center;
  user-select: none;
  --webkit-user-select: none;
  padding: 0.5rem 1.5rem;
  background-color: #d4af37;
  color: #fff;
  border: 0;
  border-radius: 0.65rem;
  opacity: 0.9;
  display: inline-flex;
  margin: 0.1rem;
  cursor: pointer;
  transition: filter 0.15s ease, opacity 0.15s ease, transform 0.05s ease;
}

.btn svg {
  max-height: 30px;
  max-width: 30px;
  color: white;
  fill: white;
  vertical-align: middle;
  padding-right: 0.5rem;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.btn:hover {
  opacity: 1;
  filter: brightness(0.94);
}

button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
.btn:active {
  transform: translateY(1px);
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  filter: none;
  cursor: not-allowed;
}

.google {
  background-color: #dd4b39;
  color: white;
}

.github {
  background-color: black;
  color: white;
}

.twitch {
  background-color: #a970ff;
  color: white;
}

.amazon {
  background-color: #152939;
  color: white;
}

.discord {
  background-color: #5865f2;
  color: white;
}

.delete {
  background-color: red;
  color: white;
}

.nav_brand {
  font-size: 2.8rem;
  padding: 0 0.5rem;
  line-height: 1.2;
  text-decoration: none !important;
}

.nav_item {
  padding: 0 0.6rem !important;
  display: inline-flex;
  align-items: center;
}

.nav_brand svg {
  max-width: 3rem;
  max-height: 3rem;
  margin: 2px;
  color: white;
}

.nav_brand {
  color: white;
  font-family: var(--emph-font);
  font-size: 2.8rem;
}

.nav {
  font-family: var(--emph-font);
  font-size: 1.2rem;
  white-space: nowrap;
  color: white;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.nav_header {
  background-color: #000;
  padding-right: 1rem;
  width: 100%;
  left: 0;
  top: 0;
}

.footer {
  font-size: 12px;
  color: #999;
}

.center {
  margin-top: 2rem;
  text-align: center;
}

.dashboard-center {
  margin-top: 8rem;
  text-align: center;
}