body {
  font-family: Arial, sans-serif;
  background: #e8f0fe;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  margin-bottom: 20px;
}

select, input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
}

#result {
  font-weight: bold;
  font-size: 18px;
  margin-top: 15px;
}