@import url("fonts.css");
* {
  margin: 0;
  padding: 0;
  font-family: var(--primaryFont);
}
body {
  width: 980px;
  margin: 0 auto;
  box-shadow: 0 0px 6px rgb(0 0 0 / 50%);
  padding: 1rem 2rem;
  font-size: 15px;
  margin-top: 1rem;
}
.logo img {
  height: 80px;
}
.company-info p {
  margin: 0;
  font-weight: 800;
  color: #333;
}
.product-name {
  font-size: 27px;
  font-weight: 800;
  text-align: center;
}
.footer-company-info {
  padding-top: 1rem;
  border-top: 2px solid #000;
}
.footer-company-info p {
  min-height: 1px;
  margin: 0;
  font-weight: 600;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border-width: unset;
}
.product-detail img {
  width: 100%;
}
.tool-box {
  position: fixed;
  top: 100px;
  right: 50px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tool-box a {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 22px;
  border-radius: 5px;
  background-color: #ccc;
  color: #000;
  text-align: center;
  border: 1px solid #000;
  line-height: 1.8;
}
@media print {
  body {
    box-shadow: none;
    margin-top: 0;
  }
  .noprint {
    visibility: hidden;
  }
}
