* {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

body {
  padding: 0px;
  border-collapse: separate;
  border-spacing: 0px;
  margin: 0px;
  padding: 0;
  min-height: 50px;
}

html {
  color: white;
  background-color: black;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  min-width: 270px;
  /* make sure it is at least as tall as the viewport */
  position: relative;
}

#app {
  text-align: center;
  margin-top: 20px;
}

#appstatus {
  text-align: center;
}

table {
  border-collapse: collapse;
}

input {
  border-radius: 15px;
  padding: 8px;
  margin: 0;
  text-align: right;
  box-shadow: 1px 1px 5px silver;
}

textarea {
  border-radius: 15px;
  padding: 8px;
  margin: 0;
  box-shadow: 1px 1px 5px silver;
}


.css_close:after {
  display: inline-block;
  line-height: 20px;
  box-shadow: 2px 2px 2px silver;
  color: red;
  font-size: 30px;
  height: 15px;
  padding-bottom: 3px;
  border-radius: 5px;
  background: #e9e51b;
  content: "\00d7"; /* This will render the 'X' */
}
.act_button {
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  background: #73ad21;
  border: 1.5px solid rgb(245, 216, 179);
  margin: 2px 4px 2px 2px;
  padding: 2px 4px 2px 4px;
  height: 22px;
  box-shadow: 3px 3px 5px silver;
}

.sign_out_button {
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 10px;
  background: #4c7070;
  border: 1.5px solid rgb(245, 216, 179);
  margin: 2px 4px 2px 2px;
  padding: 2px 4px 2px 4px;
  height: 16px;
  box-shadow: 3px 3px 5px silver;
}


.tab_view {
  padding: 0;
  border-radius: 5px;
  margin-top: 20px;
  min-width: 200px;
  box-shadow: 2px 1px 3px silver;
}

.tab_view td {
  /*top right bottom left*/
  padding: 2px 2px 2px 5px;
  border-right: #778899 1px solid;
  text-align: left;
  vertical-align: top;
}
.tab_view td:last-child {
  border-right: none;
}
.tab_view tr {
  vertical-align: middle;
  border-bottom: #778899 1px solid;
}
.tab_view tr:last-child {
  border-bottom: none;
}
.tab_view th {
  border-right: #778899 1px solid;
  border-bottom: #778899 1.5px solid;
  background: #4c7070;
  margin: auto;
  line-height: 30px;
  padding: 2px 5px 2px 8px;
  text-align: left;
}
.tab_view th:first-child {
  border-top-left-radius: 5px;
}
.tab_view th:last-child {
  border-top-right-radius: 5px;
  border-right: none;
}

.tab_edit {
  min-width: 280px;
  background: #484848;
  padding: 0;
  border-collapse: collapse;
}
.tab_edit td {
  /*top right bottom left*/
  padding: 2px 2px 2px 5px;
  text-align: left;
  vertical-align: center;
  border-right: #778899 1px solid;
}
.tab_edit tr {
  line-height: 35px;
  vertical-align: middle;
  border: #778899 1px solid;
}

.mainLogo {
  position: absolute;
  bottom: -100px;
  width: 215px;
  right: 20px;
  z-index: -100;
  font-size: 8px;
}
.sysInfo {
  position: absolute;
  background-color: rgb(214, 90, 8);
  left: 50%;
  top: 15px;
  width: 300px;
  z-index: 10000000;
  font-size: 20px;
  color: yellow;
  border-radius: 5px;
  box-shadow: 2px 1px 3px red;
}

.top_right {
  width: 200px;
  padding: 2px;
  font-size: 12px;
  text-align: right;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 100;
}

.top {
  width: 200px;
  font-size: 12px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 100;
}