/* Form Close Button Styles */
.quote-form-card {
  position: relative;
}

.form-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.form-close-btn:hover {
  background: #e5e7eb;
}

.form-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: #4b5563;
}

