body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #e0f7fa, #e0f2f1);
  color: #111;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.status {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.status.yes {
  color: #d32f2f;
}

.status.no {
  color: #388e3c;
}

.info {
  margin-top: 1rem;
  font-size: 1rem;
  color: #374151;
}

.timestamp {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
