/* Roboto is Material's default font */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    text-align: center;
    background-color: #000000;
    font-family: Roboto;
}

p {
    color: white;
    font-size: 1.2em;
    display: inline-block;
    margin:  20px;
}

img {
    /* margin: 60px 0 30px 0; */
    width: 75px;
    filter: brightness(90%);
    padding: 30px 10px;
    border-radius: 10px;
    float: left;
    padding: 5px;
}

form {
    display: inline-block;
    margin-bottom: 16px;
}

input, select {
    /*190px is okay if you want to compact things */
    width: 300px;
    margin: 7.5px 5px;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.3em;
    color: #FFFFFF;
    background-color: #121212;
    text-align: center;
    border: solid 2px #000000;
    display: inline-block;
}

input:focus, select:focus {
    outline: none;
    border: solid 2px #007bff;
}

input[type="date"], select {
    font: inherit;
    font-size: 1.3rem;
}

input[type="date"]::placeholder, select::placeholder {
    color: rgb(133, 133, 133);
}

/* [type="date"] */
input::-webkit-calendar-picker-indicator {
    background-color: #BB86FC;
    padding: 50px 10px;
}


select {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image:
      linear-gradient(45deg, transparent 50%, transparent 50%),
      linear-gradient(135deg, transparent 50%, transparent 50%),
      linear-gradient(to right, #BB86FC, #BB86FC),
      linear-gradient(to top, transparent 50%, #BB86FC 50%);
    background-position: 100%, 100%, 100% 0, center right;
    background-size:
      5px 5px,
      5px 5px,
      40px 50px, 
      10px 10px;
    background-repeat: no-repeat;
    padding-right: 15px;
  }
  /* Make 40px > 20px and allow appearance as an alt layout */

.checkbox-container {
    width: 250px;
    margin: 7.5px 5px;
    /* height: 50px; */
    display: inline-block;
}

.checkbox-container label  {
    color: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
}

input[type="checkbox"] {
    width: 30px;
    vertical-align: middle;
}

#submit {
    background-color: #BB86FC;
    border:  none;
    width:  200px;
    color: #000000;
    border-radius: 8px;
    font-size: 1.3em;
}

#submit:hover, .download-btn:hover {
    background-color: #903afa;
}

.result-heading {
    background-color: #121212;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    color: #BB86FC;
    float: left;
    font-size: 1em;
}

.download-btn {
    cursor: pointer;
    background-color: #BB86FC;
    width:  125px;
    color: #000000;
    border-radius: 8px;
    margin: 7.5px 5px;
    text-align: center;
    padding: 5px;
    float: right;
}

/* -- Material Design Table style -------------- */
table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    background-color: #121212;
    color: white;
    border-radius: 10px;
}

th,td {
    text-align: left;
    padding: 1.6rem;
    vertical-align: top;
    border-top: 0;
}

th {
    font-weight: 400;
    color: #757575;
    vertical-align: bottom;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

tbody {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.even-row {
    background-color: #1d1d1d;
}

thead th {
    color: #FFFFFF;
    border-bottom: 1px solid #1d1d1d;
}

h1 {
    color: white;
}