body {
  font-family: 'Roboto', sans-serif;
  background: #edefff;
  margin: 0;
  padding: 20px;
  text-align: right;
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  font-weight: 600;
  color: #555;
}

select, input[type=number], input[type=range] {
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}

button {
  margin-top: 20px;
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}

.result {
  margin-top: 30px;
  padding: 20px;
  background: #e9ecef;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
  line-height: 1.6;
  text-align: right;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.slider-value {
  font-weight: bold;
  min-width: 40px;
  text-align: right;
}