/* styles-demo.css */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafafa;
}

.demo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.demo-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 360px;
}

.demo-card h1 {
  margin-bottom: 16px;
  font-size: 1.75rem;
  color: #333;
}

.demo-card p {
  margin: 8px 0;
  color: #555;
  font-size: 1rem;
}

.demo-card .note {
  margin-top: 12px;
  font-style: italic;
  color: #999;
}