/**
 * Body CSS
 */

html,
body {
  height: 100%;
}

html,
body,
input,
textarea,
button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}


/**
 * Header CSS
 */

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

header ul.mui-list--inline {
  margin-bottom: 0;
}

header a {
  color: white;
}

header a:hover {
  color: white;
}


/**
 * Content CSS
 */

.kv_content {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.mui-panel {
  margin: 20px; 
}

div.separate-me {
  margin-top: 10px;  /* Margin is space outside the element */
  padding: 10px;/* Padding is space inside the element */
  /*border: 1px solid #000000;*/  /* Only use to show spacing */
}

#content-wrapper {
  min-height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;

  /* sticky footer */
  margin-bottom: -100px;
  padding-bottom: 100px;
}

.demo-form {
  text-align: center;
}

.demo-form-text   {
  border:none;
  border-width: 0;
  text-align: center;
}





/**
 * Table CSS
 */

table.table-clean {
  width: auto;
  border: 2px solid #EFEFEF;
  text-align: left;
  border-collapse: collapse;
}  /* Main CSS for the Table */

table.table-clean td, table.table-clean th {
  border: 0px solid #ffffff;
  padding: 4px 16px;
}  /* Padding around the cells */

table.table-clean thead {
  border-bottom: 2px solid #EFEFEF;
}  /* Specific to the table header row */

table.table-clean thead th {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}  /* Specific to the table header elements */

table.table-clean tr:nth-child(even) {
  background: #EFEFEF;
}






/**
 * Footer CSS
 */

footer {
  height: 100px;
  background-color: #eee;
  border-top: 1px solid #e0e0e0;
  padding-top: 35px;
}

