* {
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  display: grid;
  place-items: center;
  background: #1e1e1e;
  height: 100vh;
  background-image: url("star.svg?33ss");
}

.adder form {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  display: grid;
  /* grid-template-columns: auto 400px; */
  background: white;
  padding: 25px;
  row-gap: 5px;
  justify-items: center;
  top: 15px;
  text-transform: capitalize;
  border-radius: 15px;

  width: fit-content;
  box-shadow: 3px 3px 5px #000000;
}

label,
h2 {
  color: #d2b749;
}

.line {
  display: grid;
  grid-template-columns: 300px;
}

.adder form input {
  height: 30px;
  width: 300px;
  outline: none;
  border-radius: 5px;
}

.results {
  margin: 35px;
}

.results table {
  position: absolute;
  display: flex;
  justify-content: space-between;
  height: 500px;
  overflow-y: scroll;
  left: 50%;
  border: 1px solid rgb(185, 185, 185);
  background: rgb(221, 221, 221);
  transform: translate(-52%);
  border-radius: 5px;
  white-space: nowrap;
  margin-top: 15px;
  text-align: center;
}

.results tabletr {
  position: absolute;
  background-size: cover;
}

.results table td,
.results table th {
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.bl {
  background: rgb(160, 178, 206);
}

.pn {
  background: rgba(181, 245, 139, 0.356);
}

.action,
.trigger {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.action:nth-child(2) {
  color: red;
}

.pnl {
  position: absolute;
  width: 750px;
  padding: 15px;
  box-shadow: 1px 1px 3px 1px black;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgb(206, 240, 193);
  border-radius: 15px;
  height: 200px;
  z-index: 3;
  display: none;
}

.controls {
  display: grid;
  grid-template-columns: auto auto;
}

.g {
  display: grid;
  grid-template-columns: 100px 250px;
  margin-bottom: 7px;
  align-items: center;
  justify-content: center;
}

.g input {
  width: 100%;
  height: 35px;
}

.btns {
  position: absolute;
  right: 25px;
  display: grid;
  grid-template-columns: 105px 105px;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  float: left;
}

.btns.btn {
  position: relative;
  width: 90px;
  margin: 15px;
}

button {
  height: 50px;
}

.confirm {
  background: rgb(87, 247, 87);
  font-weight: 900;
  color: #ff4787;
  border: 1px solid black;
  border-radius: 6px;
  cursor: pointer;
}

.filter {
  position: relative;
  display: grid;
  justify-content: center;
  grid-template-columns: 400px auto auto auto auto;
  margin-bottom: 20px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  padding: 0;
  margin: 0;
}

.filter input {
  height: 30px;
  outline: none;
  border-radius: 5px;
}

#search {
  width: 60px;
  height: 32px;
  border-radius: 5px;
  color: #1f6cd8;
  background: #b3f686;
}

th {
  position: sticky;
  background: rgb(185, 185, 185);
  top: 0;
}

/*# sourceMappingURL=style.css.map */