body {
  font-family: sans-serif;
}

.main {
  max-width: 100%;
  padding: 1rem auto;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

.loading {
  padding: 2rem;
}

#searches_content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
#searches_content input {
  width: auto;
  margin: 0.5rem;
  padding: 0.5rem;
}

#searches_clearContainer {
  text-align: center;
}
#searches_clearContainer button {
  background: #333;
  color: #fff;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.dt-search {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
  position: relative;
  min-width: 50vw;
}
.modal__closer {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 5px;
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
  font-size: 1.5em;
}
.modal__table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #333;
}
.modal__table th, .modal__table td {
  border: 1px solid #333;
  padding: 0.5rem;
  vertical-align: top;
}
.modal__table th {
  text-align: left;
}

.modalMe {
  color: black;
  font-weight: bold;
}

.ref {
  font-style: italic;
  font-weight: normal;
  color: #666;
}

.form {
  text-align: center;
}
.form__fields {
  display: grid;
  width: 80%;
  margin: 1rem auto;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__fields input {
  padding: 0.5rem;
  width: calc(100% - 1rem);
}
.form__buttons input {
  background: #333;
  color: #fff;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.form__buttons #reset {
  background: #999;
}

.autocomplete {
  position: relative;
  display: flex;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  max-height: 200px;
  font-size: 0.75rem;
  overflow-y: scroll;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 0.5rem;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

.autocomplete-active {
  background-color: #e9e9e9 !important;
}/*# sourceMappingURL=app.css.map */