body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  margin: 0;
  padding: 0;
}

#root {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.dashboard-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 48px;
  margin: 24px 0;
  text-align: center;
  width: 600px;
}

.dashboard-title {
  font-size: 2rem;
  color: #2d3436;
  margin-bottom: 16px;
}

.dashboard-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.dashboard-section {
  flex: 1;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  background: #f1f2f6;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-name {
  font-weight: bold;
}

.product-price {
  color: #0984e3;
}

button {
  background: #00b894;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}

button:hover {
  background: #00cec9;
}

.cart-list {
  list-style: none;
  padding: 0;
}

.cart-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-total {
  font-weight: bold;
  margin: 12px 0;
}

.cart-empty {
  color: #636e72;
  font-style: italic;
}