/* styles.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

h1 {
  text-align: center;
  color: #007bff;
}

#data-container {
  margin-top: 20px;
}

.data-item {
  background: #f9f9f9;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border-left: 4px solid #007bff;
}

.data-item strong {
  color: #007bff;
}