
body {
  background: white;
  margin: 0;
  padding: 20px;
}

.calculator-widget {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  background: white;
  color: #333;
  border: 2px solid #c41230;
}

.assumptions {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
}

.assumptions h4 {
  color: #c41230;
  margin: 0 0 15px 0;
  font-size: 18px;
}

.assumptions ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
}

.assumptions li {
  margin: 8px 0;
  font-size: 14px;
  position: relative;
  color: #666;
}

.assumptions li:before {
  content: "•";
  color: #c41230;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.savings-amount {
  font-size: 32px;
  font-weight: bold;
  color: #c41230;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.savings-amount::before {
  content: "$";
  font-size: 32px;
  color: #27ae60;
}

.monthly-note {
  font-size: 16px;
  color: #666;
}

.input-group {
  margin: 15px 0;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

input[type="range"] {
  width: 100%;
  margin: 10px 0;
}

.result {
  margin-top: 20px;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 4px;
  text-align: center;
}

h2 {
  margin: 0 0 20px;
  color: #2c3e50;
  text-align: center;
}

h3 {
  margin: 0;
  color: #2c3e50;
}

#result-value {
  font-size: 24px;
  font-weight: bold;
  color: #27ae60;
}
