/* main html styles */
* {
  --white: #fafafa;
  --light-gray: #eaeaea;
  --gray: #a0a0a0;
  --dark-gray: #606060;
  --black: #303030;
  --blue: #02b3e4;
  --medium-blue: #61d0ee;
  --light-blue: #c0ecf8;
}

/* page section style */
main {
  box-sizing: border-box;
  width: 100%;
}

.section {
  margin: 0 auto;
  width: 100%;
  padding: 0px 30px;
}
/* End */

/* input and button styles */
input,
select,
textarea {
  font-family: 'Lato', sans-serif !important;
  font-size: 0.8em;
  background: var(--light-gray) !important;
  border: none;
  transition: background 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--light-blue) !important;
}

textarea {
  overflow: scroll;
  white-space: nowrap;
}

.button,
button {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 5px 10px;
  border: none;
  background: none;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  user-select: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.button:hover,
button:hover,
.button:focus,
button:focus {
  background: var(--light-gray);
  color: var(--black);
  cursor: pointer;
}

.button > svg:not(:first-child),
button > svg:not(:first-child) {
  margin-left: 5px;
}

.button > svg:not(:last-child),
button > svg:not(:last-child) {
  margin-right: 5px;
}
/* End */

/* table styles */
table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  margin: 0 auto;
}

/* general utility styles */
*[data-disabled='true'],
*[data-checked='false'] {
  color: var(--black);
  opacity: 0.15;
  filter: saturate(0);
}
*[data-highlighted='true'] {
  background: var(--light-blue) !important;
}
.small {
  font-size: 0.8em;
}
.light {
  color: var(--gray);
}
.blue {
  color: var(--blue);
}
.semibold {
  font-weight: 600;
}
.left,
.left > * {
  text-align: left !important;
  justify-content: left !important;
  justify-self: left !important;
}
.center,
.center > * {
  text-align: center !important;
  justify-content: center !important;
  justify-self: center !important;
}
.right,
.right > * {
  text-align: right !important;
  justify-content: right !important;
  justify-self: right !important;
}
.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line_sides {
  display: flex;
  flex-direction: row;
}
.line_sides:before,
.line_sides:after {
  content: '';
  flex-grow: 1;
  background: var(--light-gray);
  height: 2px;
  margin: auto;
}
.line_sides:before {
  margin-right: 10px;
}
.line_sides:after {
  margin-left: 10px;
}
/* End */

/*Thanks to het.io*/
.acknowledgements-container {
    text-align: center;
    background-color: #e8f4fb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.acknowledgements-container h1 {
    color: #5b9bd5;
    font-size: 24px;
    margin-bottom: 15px;
}

.acknowledgements-container a {
    color: #4a90e2;
    text-decoration: none;
}

.acknowledgements-container a:hover {
    text-decoration: underline;
}