body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
}

.container {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-height: 80%; /* Limit container height */
  width: 90%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

h1 {
  color: #4c1d95;
}

.message {
  margin: 20px;
  padding: 5px;
  border-radius: 4px;
  font-weight: bold;
  background-color: #ede9fe;
  color: #7c3aed;
}

.important {
  font-weight: bold;
  font-size: large;
  color: #dc2626;
}
