/* Dierenweide Subscription Form Styles */

.dierenweide-subscription-form-wrapper {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
}

.dierenweide-subscription-form {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dierenweide-subscription-form h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
  font-size: 24px;
}

.dierenweide-subscription-form .form-description {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
}

.dierenweide-subscription-form .form-group {
  margin-bottom: 20px;
}

.dierenweide-subscription-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.dierenweide-subscription-form input[type="text"],
.dierenweide-subscription-form input[type="email"],
.dierenweide-subscription-form input[type="number"],
.dierenweide-subscription-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

/* Dropdown styling voor betere leesbaarheid */
.dierenweide-subscription-form select {
  color: #333 !important;
  background-color: #fff !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* Option styling - zorg dat alle opties goed leesbaar zijn */
.dierenweide-subscription-form select option {
  color: #333 !important;
  background-color: #fff !important;
  padding: 10px;
}

/* Geselecteerde optie in de dropdown lijst */
.dierenweide-subscription-form select option:checked {
  background-color: #006533 !important;
  color: #fff !important;
}

/* Zorg dat de geselecteerde waarde in het select veld altijd zichtbaar is */
.dierenweide-subscription-form select:not([value=""]) {
  color: #333 !important;
  background-color: #fff !important;
  padding: 0 10px;
}

.dierenweide-subscription-form input,
.dierenweide-subscription-form select {
  padding: 0 10px;
}

.dierenweide-subscription-form input:focus,
.dierenweide-subscription-form select:focus {
  outline: none;
  border-color: #006533;
  box-shadow: 0 0 0 2px rgba(0, 101, 51, 0.1);
  color: #333 !important;
  background-color: #fff !important;
}

.dierenweide-subscription-form input.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

/* Zorg dat ingevulde tekst duidelijk zichtbaar is */
.dierenweide-subscription-form input[type="text"],
.dierenweide-subscription-form input[type="email"],
.dierenweide-subscription-form input[type="number"] {
  color: #333 !important;
}

.dierenweide-subscription-form small {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}

.dierenweide-subscription-form .payment-info {
  margin-top: 15px;
  margin-bottom: 10px;
}

.dierenweide-subscription-form .payment-method-notice {
  background: #e7f3ff;
  border-left: 4px solid #006533;
  padding: 12px 15px;
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
}

.dierenweide-subscription-form .submit-button {
  width: 100%;
  padding: 14px;
  background: #006533;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.dierenweide-subscription-form .submit-button:hover {
  background: #004d28;
}

.dierenweide-subscription-form .submit-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.dierenweide-subscription-form .form-messages {
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 4px;
  display: none;
}

.dierenweide-subscription-form .form-messages.show {
  display: block;
}

.dierenweide-subscription-form .form-messages.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.dierenweide-subscription-form .form-messages.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.dierenweide-subscription-form .form-messages.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Loading state */
.dierenweide-subscription-form.loading .submit-button {
  position: relative;
  color: transparent;
}

.dierenweide-subscription-form.loading .submit-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
