/* WP Renewal Pricing Variations - Frontend Styling */
.wprp-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.wprp-box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a202c;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 8px;
}

.wprp-box form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.wprp-box select {
  flex: 1;
  min-width: 220px;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  background: #f9fafb;
  color: #2d3748;
  transition: all 0.2s ease-in-out;
}

.wprp-box select:focus {
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
  outline: none;
  background: #fff;
}

.wprp-box button.button {
  background: #2b6cb0;
  color: #fff;
  padding: 10px 18px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease-in-out, transform 0.1s ease-in-out;
}

.wprp-box button.button:hover {
  background: #2c5282;
  transform: translateY(-2px);
}

.wprp-box button.button:active {
  transform: translateY(0);
}
