@font-face {
  font-family: "Noto Sans";
  src: url("/resources/fonts/NotoSans-Regular.ttf")
}

body {
  color: #000;
  background: #0000;
  font-family: 'Segoe UI', 'Noto Sans', sans-serif
}

button {
  min-width: 100px;
  height: 30px;
  border: 0px;
  border-radius: 5px;
  background-color: #ddd;
}
button:hover {
  background-color: #ccc;
}
button:active {
  background-color: #b2b2b2;
}

input[type=text] {
  height: 30px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

input[type=checkbox], input[type=radio] {
  height: 15px;
  width: 15px;
  accent-color: #f6c;
}

select {
  height: 30px;
  border-radius: 5px;
  border: 1px solid #aaa;
  background-color: #ddd;
}
select:hover {
  background-color: #ccc;
}
select:active {
  background-color: #b2b2b2;
}

table, th, td {
  border: 1px solid #a48;
}
tr:nth-child(even) {
  background-color: #ffeaf8
}
th, td {
  min-width: 60px;
}
table {
  border-collapse: collapse;
}
