body {
  background: black;
}

#content {
  padding: 50px;
  background: rgb(156, 156, 0);
}

a { 
  color: yellow;
}
a:hover { 
  color: rgb(150, 150, 0);
}
#header {
  width: 100%;
  background: rgb(54, 54, 0);
  color: yellow;
  padding: 25px;
}

#main-menu {
  font-size: 20px;
}

#main-menu li {
  list-style-type: none;
  margin:5px 0;
}
#main-menu li a {
  text-decoration: none;
  font-weight: bold;
  padding: 5px;
  color: yellow;
}

#main-menu li a:hover {
  background-color: black;
  color: yellow;
}

#header-menu {
  padding: 0;
  margin: 0;
}
#header-menu li {
  float: right;
  list-style: none;
}
#header-menu a {
  display: block;
  color: yellow;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
#header-menu a:hover {
  background-color: black;
}

h1.header-title {
  font-size: 50px;
  text-align: center;
  padding: 20px;
}
#items-list li a {
  color: white;
}
#items-list li:nth-child(odd) {
  background-color: #bd7b00;
}

#items-list li:nth-child(even) {
  background-color: #bfc600;
}

#items-list li {
  list-style: none;
  margin-bottom: 20px;
  border: 1px solid rgb(0, 0, 0);
  padding: 10px;
}

#items-list li form {
  margin-top: 10px;
}

#items-list li form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#items-list li form input[type="text"] {
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
}

#items-list li form input[type="submit"] {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}

#configs-list li a,
#configs-list li:nth-child(odd),
#configs-list li:nth-child(even),
#configs-list li,
#configs-list li form,
#configs-list li form label,
#configs-list li form input[type="text"],
#configs-list li form input[type="submit"] {
  color: rgb(0, 0, 0);
}

#configs-list li:nth-child(odd) {
  background-color: #bd7b00;
}

#configs-list li:nth-child(even) {
  background-color: #bfc600;
}

#configs-list li {
  list-style: none;
  margin-bottom: 20px;
  border: 1px solid rgb(0, 0, 0);
  padding: 10px;
}

#configs-list li form {
  margin-top: 10px;
}

#configs-list li form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#configs-list li form input[type="text"] {
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
}

#configs-list li form input[type="submit"] {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}

#footer {
  width: 100%;
  padding: 20px;
  background: rgb(54, 54, 0);
  color: white;
  padding: 20px 20px 200px 20px;
}

#footer a {
  color: white;
  text-decoration: none;
}

/* General */
.checkwrap{
  height: 100px;
  overflow-y: scroll;
}
.checkwrap::after {
  content: "";
  display: table;
  clear: both;
}

.checksource {
  background: #907f00;
  padding: 5px;
  width: 200px;
  color: yellow;
  text-align: right;
  margin: 5px;
  float: left;
  clear: right;
}

input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  color: black;
}

input[type="checkbox"]:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked:before {
  content: "✔";
  top: -11px;
  left: -8px;
  font-size: 25px;
  width: 20px;
  height: 20px;
}

input[type="textarea"]{
  width: 200px;
  height: 100px;
}
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

th {
  background-color: #000000;
  color: yellow;
}

tr:nth-child(even) {
  background-color: #000000;
  color: yellow;
}
tr:nth-child(odd) {
  color: yellow;
  background-color: #252500;
}
