:root {
  --separation-padding: 1rem;
  --gap-flex: 0.5rem;

  --text-color: white;

  --primary: #575976;
  --primary-dark: #3c3d51;
  --primary-darker: #21212c;

  --mdc-theme-primary: var(--primary-dark);
  --mdc-theme-secondary: var(--primary-dark);
}

html,
body {
  font-family: 'Roboto Mono';
  background-color: var(--primary-darker) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
span,
label,
li {
  margin: 0;
  color: var(--text-color, white) !important;
}

.primary {
  background-color: var(--primary) !important;
}

.primary-dark {
  background-color: var(--primary-dark) !important;
}

.primary-darker {
  background-color: var(--primary-darker) !important;
}

.page-content,
.content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.center-text {
  text-align: center;
}

p svg,
p img,
span svg,
span img {
  vertical-align: top;
}

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

.tabulator button {
  width: auto;
}

.tabulator-table .iconContainer {
  width: 100%;
  text-align: center;
}

.tabulator-table i {
  font-size: 1.2rem;
}

a {
  color: inherit;
}

code {
  font-family: menlo, inconsolata, monospace;
  font-size: calc(1em - 2px);
  color: #555;
  background-color: #f0f0f0;
  padding: 0.2em 0.4em;
  border-radius: 2px;
}

@media (min-width: 400px) {
  body {
    font-size: 16px;
  }
}
