/* Header/Logo Title */
.header {
  padding: 5px;
  text-align: center;
  background: #262626;
  color: white;
  font-size: 30px;
  background-image: linear-gradient(to bottom, #6D6D6D, black);
}

/*define style options for main body*/
body {
    background-color: #f8f8f8;
    }
label, button {
    color: #2b2d38;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-left: 40px;
    }
 input {
    color: #232F3E;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-left: 20px;
    }
  hr {
    width: 66%;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    background-color: #6D6D6D;
    border: 0 none;
    background-image: linear-gradient(to bottom, #6D6D6D, black);
  }

/*define style options for paragraphs (errors under table)*/
p {
  color: #AD0000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 120%;
}

/*define style options for the table and table header (caption)*/
caption {
    background: #f8f8f8;
    padding: 5px 10px;
    font-size: 28px;
    color: #000000;
    caption-side: top;
    font-weight: bold;
  }

.table {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  font-family: 'Quicksand' sans-serif;
  overflow: hidden;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

.table thead th {
  background-color: #454545;
  color: #ffffff;
}

.table th,
.table td {
  padding: 10px 20px;
  text-align: center;
  vertical-align: middle;
}

.table tbody tr:nth-of-type(even) {
  background-color: #eeeeee;
}

.table tbody tr:last-of-type {
  border-bottom: 2px solid #454545;
}
