body {
  font-family: 'Segoe UI', sans-serif;
  background: #1e1e2f;
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #2e2e3f;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.row {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
}

input, select {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  margin-top: 6px;
  background: #3a3a4f;
  color: #fff;
}

input:focus, select:focus {
  outline: none;
  box-shadow: 0 0 3px #66ccff;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

button {
  padding: 10px 15px;
  background-color: #66ccff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 48%;
  transition: background 0.2s;
}

button:hover {
  background-color: #55bbee;
}

.summary-text {
  margin-top: 20px;
  text-align: center;
  font-size: 1.1em;
  color: #ccffcc;
}
