body {
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 350px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 3px 3px 5px #ccc;
  border-radius: 6px;
}
table tr th,
table tr td {
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 5px;
  background-color: #97cbed;
}
table tr th:first-child,
table tr td:first-child {
  border-left: 1px solid #666;
}
table tr th {
  background: #0fa0d8;
  border-top: 1px solid #666;
  text-align: left;
}

table tr:first-child th:first-child {
  border-top-left-radius: 6px;
}

table tr:first-child th:last-child {
  border-top-right-radius: 6px;
}

table tr:last-child td:first-child {
  border-bottom-left-radius: 6px;
}

table tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}

button {
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 6px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 3px 3px 5px #ccc;
}

button:hover {
  border-radius: 6px;
  background-color: #0fa0d8;
  border: 1px solid #000000;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
input[type="text"],
input[type="password"],
input[type="number"] {
  border-radius: 6px;
  width: 300px;
  outline: none;
  padding: 6px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
  box-shadow: 3px 3px 5px #ccc;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 6px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  border-radius: 6px;
  background-color: #0fa0d8;
  border: 1px solid #000000;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
pre {
  white-space: pre-wrap;
}

a:active,
a:link,
a:visited {
  color: #000000;
}

a:hover {
  color: #0fa0d8;
  text-decoration: none;
}


