body {
  font-family: Arial, sans-serif;
  background: #f8f9fc;
  margin: 0;
  padding: 20px;
}
.container {
  max-width: 1200px;
  margin: auto;
}
h1, h2 {
  color: #111827;
}
button {
  padding: 8px 16px;
  background-color: #6366f1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background-color: #4f46e5;
}
.metrics {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.card {
  background: white;
  border-left: 5px solid #6366f1;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
th {
  background: #f1f5f9;
}
tr:nth-child(even) {
  background: #f9fafb;
}
.status-buyable {
  color: #16a34a;
  font-weight: bold;
  visibility: hidden;
    position: relative;
}
.status-buyable:after {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    content: "In Stock";
	color: #16a34a;
  font-weight: bold;
}
.status-notbuyable {
  color: #dc2626;
  font-weight: bold;
  visibility: hidden;
    position: relative;
}
.status-notbuyable:after {
	visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    content: "Sold Out";
	color: #dc2626;
  font-weight: bold;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  max-height: 800px;
  overflow-y: auto;
  display: block;
}

thead {
  position: sticky;
  top: 0;
  background: #f1f5f9;
  z-index: 1;
}

