body {
  display: flex;
}
.sidebar {
  width: 250px;
  height: 100vh;
  background: #343a40;
  padding: 20px;
  position: fixed;
  left: 0;
  top: 0;
}
.sidebar a {
  display: block;
  color: white;
  padding: 10px;
  text-decoration: none;
  margin: 5px 0;
  border-radius: 5px;
}
.sidebar a:hover {
  background: #495057;
}
.content {
  margin-left: 260px;
  padding: 20px;
  width: 100%;
}
.chart-container {
  width: 50%;
  height: 250px; 
  margin: 20px auto;
}
canvas {
  max-width: 100%;
  max-height: 100%;
}
.product-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 15px;
}
.product-item {
  width: 150px;
  text-align: center;
}
.product-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.product-name {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
}