
/* Simple fade-in animation for calculator */
#pwc-calculator, #pwc-quote-form {
  animation: fadeSlideIn 0.6s ease-in-out;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9ff;
  margin: 20px 0;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlighting input interaction */
#pwc-calculator input:focus,
#pwc-quote-form input:focus {
  border: 2px solid #2196F3;
  background: #eef6ff;
}
