#product-wrapper {
  width: 100%;
  min-height: 60vh;
  height: fit-content;
  margin-top: 3rem;
  margin-bottom: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#product-table {
  overflow: hidden;
  border-radius: 1rem;
  border-collapse: collapse;
  min-width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#product-table thead tr {
  background-color: var(--theme-secondary);
  color: #000;
  text-align: center;
}

#product-table th,
#product-table td {
  padding: 0.6rem;
}

#product-table a {
  text-decoration: none;
  color: black;
}

#product-table tbody tr {
  text-align: center;
}

#product-table tbody tr:nth-of-type(even) {
  background-color: #52d4ac76;
}
#product-table tbody tr:nth-of-type(odd) {
  background-color: #52d4ac55;
}
