* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

:root {
  --primary: #727cf5;
  --bg: #343a40;
  --dark: #464f5b;
  --light: #eaeaea;
  --tableTh: #212529;
}

.container-button{
    display: flex;
    gap: 15px;
    width: 100%;
    height: 80vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn-link {
  text-decoration: none;
  color: var(--light);
  padding: 15px;
  cursor: pointer;
  font-weight: 600;
  background-color: var(--tableTh);
  box-shadow:  var(--dark) 0px 0px 5px;
  border-radius: 5px;
}

.btn-link:hover{
    box-shadow:  var(--primary) 0px 0px 5px;
  }
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  position: fixed;
  background-color: var(--dark);
}
.section-consult {
  display: flex;
  justify-content: center;
}
.content-search {
  width: 800px;
  margin-top: 150px;
}
.box-content {
  display: flex;
  gap: 5px;
  margin-inline: 10px;
}
.input-consultas {
  flex: 1;
  padding: 12px 8px;
  border-radius: 5px;
  border: none;
  outline: none;
}
.btn-consult {
  padding:12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: var(--primary);
  color: var(--light);
  font-weight: 600;
}
.title-result {
  text-align: center;
  margin-top: 20px;
  color: var(--light);
}

.content-table {
  width: 95%;
  overflow-x: visible;

}
table {
  width: 95%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 7px;
}
table,
th,
td {
  color: var(--light);
  padding: 10px;
  text-align: left;
}
th {
  background-color: var(--tableTh);
}
td {
  background-color: var(--dark);
  text-wrap: none;
}
