
/* Button */

input.adu-button {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1em;
  border: 2px solid black;
  background-color: rgba(0, 0, 0, 0);
  color: black;
  padding: 4px 8px;
  cursor: pointer;
  border-color: rgb(200, 200, 200);
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}

input.adu-button:focus {
  outline: none;
}

input.adu-button:hover {
  background-color: rgba(200, 200, 200, 0.2);
}

/* Text input */

input.adu-input {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1em;
  border: 2px solid black;
  background-color: rgba(0, 0, 0, 0);
  color: black;
  padding: 4px 8px;
  cursor: pointer;
  border-color: rgb(200, 200, 200);
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}

input.adu-input:focus {
  outline: none;
}

input.adu-input:hover {
  background-color: rgba(200, 200, 200, 0.2);
}

/* Select */

select.adu-select {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1em;
  border: 2px solid black;
  background-color: rgba(0, 0, 0, 0);
  color: black;
  padding: 4px 8px;
  cursor: pointer;
  border-color: rgb(200, 200, 200);
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}

select.adu-select option {
  background-color: #333;
}

/* Slider */

input.adu-slider {
  -webkit-appearance: none;
  background: #888;
  outline: none;
  opacity: 0.7;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
}

input.adu-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #555; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

/* Table */

table.adu-table, table.adu-table th, table.adu-table td {
  border: 1px solid white;
  padding: 5px;
}

table.adu-table {
  border-collapse: collapse;
}

table.adu-table th {
  font-weight: bold;
}