body {
  font-family: Arial;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  justify-content: center;
  margin-top: 30px;
  color: white;
}

.container {
  width: 420px;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

h1 {
  text-align: center;
}

.card {
  display: flex;
  flex-direction: column;
}

input {
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: none;
}

button {
  padding: 10px;
  background: #ff7b00;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #ff9500;
}

.status {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

.stats {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.data-list {
  margin-top: 15px;
  max-height: 200px;
  overflow-y: auto;
}

.data-item {
  background: rgba(255,255,255,0.2);
  padding: 8px;
  margin: 5px 0;
  border-radius: 8px;
}