/* style.css - Styling for the Life Insurance Quote Plugin */

.life-quote-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.life-quote-form input,
.life-quote-form select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.life-quote-form button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.life-quote-form button:hover {
  background: #005f8d;
}

.quote-results {
  max-width: 800px;
  margin: 30px auto;
}

.quote-result {
  padding: 16px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-result img {
  height: 40px;
}

.quote-result .price {
  font-weight: bold;
  font-size: 18px;
}

.blurred {
  filter: blur(6px);
  opacity: 0.5;
}

.request-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.request-btn:hover {
  background-color: #218838;
}
