.dcf7-wrapper {
  max-width: 1100px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.dcf7-configurator {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
}

.dcf7-configurator-left,
.dcf7-configurator-right {
  flex: 1 1 300px;
}

.dcf7-step {
  margin-bottom: 15px;
}

.dcf7-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.dcf7-step label {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
}

.dcf7-preview {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}
.dcf7-preview img {
  width: 100%;
  display: block;
}

.dcf7-preview-text {
  font-size: 14px;
  line-height: 1.4;
}

.dcf7-form-wrapper {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
}

/* Buttons in configurator (als je ooit knoppen toevoegt) */
.dcf7-configurator button,
.dcf7-form-wrapper input[type="submit"] {
  background: var(--dcf7-color, #2596be);
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}
.dcf7-configurator button:hover,
.dcf7-form-wrapper input[type="submit"]:hover {
  filter: brightness(0.9);
}

/* Responsive */
@media (max-width: 768px) {
  .dcf7-configurator {
    flex-direction: column;
  }
}
