html, body {
  width: 100vh;
  height: 100vw;
  margin: 0 auto;
  padding: 0;
  background-color: #f0f4f0;
}

.bookInventory {
  display: grid;
  grid-template-columns: 1fr 3fr 4fr;
  padding: 30;
  margin: 0 auto;
}
.bookInventory__header {
  display: flex;
  align-items: center;
  padding-left: 100px;
}
.bookInventory__header aside {
  font-size: 50px;
  position: relative;
  transform: translate(25px, 51px) rotate(270deg);
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(68, 147, 248);
  text-align: center;
}

.book-form {
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}
.book-form form {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 15px;
  justify-items: center;
  border-left: 1px solid #0E044B;
  padding-top: 100px;
  padding-bottom: 50px;
  padding-right: 50px;
  padding-left: 200px;
}
.book-form .inputField {
  font-size: 1.2rem;
  width: 300px;
  border: none;
  border-bottom: 2px solid #0E044B;
  outline: none;
  margin: 5px 0;
  padding: 8px 0;
  background-color: #F3EDE7;
}

.listedBooks {
  display: grid;
  max-height: 700px;
  row-gap: 10px;
  grid-template-rows: auto;
  overflow-y: scroll;
  width: 500px;
}
.listedBooks__book {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  column-gap: 10px;
  padding: 5px;
  max-height: 150px;
}
.listedBooks__book img {
  width: 100px;
  height: 140px;
  object-fit: cover;
  grid-column: 1;
}
.listedBooks__bookInfo {
  grid-column: 2;
}
.listedBooks__stock {
  background-color: rgb(55, 162, 55);
  border-radius: 10%/50%;
  text-align: center;
  grid-column: 2;
  width: 50%;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.listedBooks__title {
  grid-column: 2;
  margin: 0 auto;
}
.listedBooks input[name=deleteBox] {
  width: 20px;
  grid-column: 3;
}
.listedBooks__price {
  grid-column: 2;
}
.listedBooks__price::after {
  content: "$";
}

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