/* Modern styles for electric vs ICE comparison calculator */
.calculator-modern {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Montserrat', sans-serif;
}

.calculator-modern h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.calculator-modern .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.calculator-modern .field {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
}

.calculator-modern label {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.calculator-modern input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.calculator-modern .btn {
  background: #52c7b8;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
}

.calculator-modern .btn:hover {
  background: #3ca998;
}

.calculator-modern .result {
  margin-top: 1.5rem;
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 6px;
  line-height: 1.6;
}

.calculator-modern .result span {
  font-weight: 700;
}
