/* Background Color */
body {
    background-color: #f4fdfc;
}

/* Center H1 */
h1 {
    text-align: center;
}

    /* Data Table Class */
table.Data {

  border-collapse: collapse;
  /*width: 10%;*/
   margin-left: auto;
   margin-right: auto;
}

table.Data th, tr {
  text-align: left;
  padding: 0%;
  border-bottom: 1px solid #ddd;
}

table.Data tr:nth-child(even) {
  background-color: #d0f0d0;

}

table.Data tr:nth-child(odd) {
  background-color: #ffffff;

}


table.Data tr:hover {
  background-color: #c5c5c5;
}

table.Data th, td {
            padding-left: 5px;
            padding-right: 5px;
            min-width: 100px;
}

.form-group {
    display: inline-block;
}

.form-grid {
    display: inline-grid;
    grid-template-columns: auto auto;
}

.form-item {
    padding: 10px;
}

