html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: black;
  color: white;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a.action {
  color: #dc3545;
  padding: 0.125rem 0.75rem;
  display: inline-block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 0.375rem;
  gap: 0.375rem;
  border-bottom: 1px solid #dc3545;
  margin-bottom: 1rem;
}

nav > a {
  font-weight: bolder;
  text-align: center;
  display: inline-block;
  font-size: 2rem;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

nav > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}

div.group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

div.group-elem {
  flex: 1;
  min-width: 8rem;
}

.btn {
  padding: 0.125rem 0.75rem;
  background-color: #dc3545;
  border: 1px solid transparent;
  border-radius: 0.25em;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
  color: black;
  font-size: 1rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.btn-main {
  margin: 1rem 0;
}

.btn:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

div.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: black;
  color: white;
  padding: 0 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin: 0.75rem 0;
}

h5 {
  font-weight: bold;
  margin: 0.75rem 0;
}

textarea {
  width: 100%;
  min-height: 3rem;
  box-sizing: border-box;
  font-size: 1rem;
}

input {
  padding: 0.125rem 0.75rem;
  line-height: 1.5;
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid #ced4da;
  font-size: 1rem;
}

select {
  padding: 0.125rem 0.75rem;
  line-height: 1.5;
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid #ced4da;
  font-size: 1rem;
  margin: 4px 0;
}

input[type="file"] {
  margin: 4px 0;
}

table {
  margin: 0.75rem 0;
  width: 100%;
}

table thead th {
  text-align: center;
  vertical-align: middle;
  border: 2px solid #dc3545;
  padding: 0.75rem 0.75rem;
}

table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 0.75rem 0.75rem;
}

table tbody td > div {
  max-height: 3rem;
}

table tbody td.shrink-4 {
  max-width: 4rem;
  overflow: clip;
}
table tbody td.shrink-8 {
  max-width: 8rem;
  overflow: clip;
}
table tbody td.shrink-16 {
  max-width: 16rem;
  overflow: clip;
}

tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

img {
  max-width: 100%;
}
