/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.5.9_@opentelemetry+api@1.9.0_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.5.9_@opentelemetry+api@1.9.0_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --primary-color: #1a3a5c;
  --primary-hover: #0f2744;
  --success-color: #16a34a;
  --error-color: #dc2626;
  --text-color: #1a3a5c;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  /*--border-color: #e5e7eb;*/
  --border-color: #a9a9a9;
  --background: #ffffff;
  --background-secondary: #f8fafc;
  --radius: 4px;
  --radius-lg: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-color);
  background: var(--background);
  line-height: 1.6;
}

/* Donate Page - Two Column Layout */
.donate-page {
  min-height: 100vh;
  padding: 2rem 1rem;
  background: var(--background);
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-gap: 3rem;
  gap: 3rem;
}

@media (min-width: 900px) {
  .page-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .donate-page {
    padding: 4rem 2rem;
  }
}

/* Left Column - Campaign Info */
.campaign-info {
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
}

.campaign-header {
  margin-bottom: 2rem;
}

.campaign-header img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.campaign-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

@media (min-width: 900px) {
  .campaign-header h1 {
    font-size: 2rem;
  }
}

.campaign-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Progress Bar */
.progress-container {
  padding: 1.25rem;
  background: var(--background-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.progress-bar {
  height: 10px;
  background: var(--border-color);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar .progress {
  height: 100%;
  background: var(--success-color);
  border-radius: 5px;
  transition: width 0.5s ease;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.progress-raised {
  font-weight: 600;
  color: var(--success-color);
}

.progress-goal {
  color: var(--text-secondary);
}

/* Right Column - Donation Form */
.donation-form-container {
  background: var(--background);
}

/* Donation Form */
.donation-form {
  max-width: 100%;
}

/* Stepper */
.stepper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.bottom-space {
  margin-bottom: 0.25rem;
}

.state-height {
  height: 3rem;
}

.stepper .step {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.15s;
}

.stepper .step:disabled {
  cursor: default;
}

.stepper .step.active {
  color: var(--text-color);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: calc(0.25rem - 2px);
}

.stepper .step.completed {
  color: var(--primary-color);
}

.stepper .step.completed:hover:not(:disabled) {
  text-decoration: underline;
}

.stepper .step-check {
  color: var(--success-color);
  font-size: 0.75rem;
  margin-right: 0.125rem;
}

.stepper .step-label {
  white-space: nowrap;
}

.stepper .step-value {
  color: var(--text-muted);
  font-weight: normal;
}

.step-label {
  font-size: 1rem;
}

/* Step Header */
.step-header {
  margin-bottom: 1.5rem;
}

.step-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.express-signin {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.signin-link {
  background: none;
  border: none;
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}

.required-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: right;
}

/* ZIP City State Layout */
.zip-city-state {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  grid-gap: 0.25rem;
  gap: 0.25rem;
}

.zip-city-state input,
.zip-city-state select {
  /*padding: 0.875rem 1rem;*/
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.15s;
  background: var(--background);
}

.zip-city-state input:focus,
.zip-city-state select:focus {
  outline: none;
  border-color: var(--primary-color);
}

@media (max-width: 480px) {
  .zip-city-state {
    grid-template-columns: 1fr;
  }
}

/* Phone Disclaimer */
.phone-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

/* Donation Summary */
.donation-summary {
  margin-bottom: 1.5rem;
}

.donation-form h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

/* Amount Section */
.amount-section {
  margin-bottom: 2rem;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.75rem;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.amount-buttons button {
  padding: 1rem 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--background);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text-color);
}

.amount-buttons button:hover {
  border-color: var(--primary-color);
  background: var(--background-secondary);
}

.amount-buttons button.selected {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.custom-amount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-amount label {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-color);
}

.custom-amount input {
  flex: 1 1;
  max-width: 120px;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.15s;
}

.custom-amount input:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Recurring Section - Toggle Style */
.recurring-section {
  margin-bottom: 1.25rem;
}

.recurring-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.recurring-toggle {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.recurring-toggle button {
  flex: 1 1;
  padding: 0.875rem 1rem;
  border: none;
  background: var(--background);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text-secondary);
}

.recurring-toggle button:first-child {
  border-right: 1px solid var(--border-color);
}

.recurring-toggle button.selected {
  background: var(--primary-color);
  color: white;
}

.recurring-toggle button:hover:not(.selected) {
  background: var(--background-secondary);
}

.recurring-section label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.recurring-section input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.recurring-section select {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 0.875rem;
}

/* Donor Info */
.donor-info {
  margin-bottom: 2rem;
}

.donor-info-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.donor-info input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  transition: border-color 0.15s;
  background: var(--background);
}

.donor-info input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.donor-info input::placeholder {
  color: var(--text-muted);
}

.donor-info input:last-child {
  margin-bottom: 0;
}

.donor-info input[type='tel'] {
  margin-bottom: 0.5rem;
}

.name-fields,
.city-state-zip {
  display: grid;
  grid-gap: 0.25rem;
  gap: 0.25rem;
  /*gap: 0.75rem;*/
  margin-bottom: 0.25rem;
}

.name-fields {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0.25rem;
}

.name-fields input {
  margin-bottom: 0rem;
}

.city-state-zip {
  grid-template-columns: 2fr 1fr 1fr;
}

.city-state-zip input {
  margin-bottom: 0;
}

.city-state-zip select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  cursor: pointer;
}

.city-state-zip select:focus {
  outline: none;
  border-color: var(--primary-color);
}

@media (max-width: 480px) {
  .city-state-zip {
    grid-template-columns: 1fr;
  }

  .city-state-zip input,
  .city-state-zip select {
    margin-bottom: 0.75rem;
  }

  .city-state-zip input:last-child,
  .city-state-zip select:last-child {
    margin-bottom: 0;
  }
}

.field-error {
  display: block;
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}

/* Payment Section */
.payment-section {
  margin-bottom: 1.5rem;
}

.payment-preview {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1rem;
}

.payment-preview input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background-secondary);
  color: var(--text-muted);
}

.preview-notice {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  text-align: center;
  margin-top: 0.75rem;
}

/* Error Message */
.error-message {
  padding: 0.875rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: var(--error-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Submit Button */
.submit-button {
  margin-top: -2rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.submit-button:hover:not(:disabled) {
  background: var(--primary-hover);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--background);
}

.success-container {
  max-width: 500px;
  text-align: center;
  background: var(--background);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--success-color);
}

.success-container h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.success-container p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.donation-details {
  background: var(--background-secondary);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.donation-details .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--success-color);
}

.back-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* Error Page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--background);
}

.error-container {
  max-width: 500px;
  text-align: center;
  background: var(--background);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.error-icon {
  width: 80px;
  height: 80px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.error-icon svg {
  width: 40px;
  height: 40px;
  color: var(--error-color);
}

.retry-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.retry-button:hover {
  background: var(--primary-hover);
}

/* Loading States */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--border-color) 25%,
    var(--background-secondary) 50%,
    var(--border-color) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-header {
  height: 200px;
  margin-bottom: 1.5rem;
}

.skeleton-title {
  height: 32px;
  width: 60%;
  margin-bottom: 0.75rem;
}

.skeleton-text {
  height: 20px;
  width: 80%;
}

.skeleton-form {
  height: 400px;
}

/* Not Found */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.not-found p {
  color: var(--text-secondary);
}

/* Checkout Section */
/*.checkout-section {
  margin-bottom: 2rem;
}

.checkout-section h3 {
  margin-bottom: 1rem;
}*/

.pay-with-card-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pay-with-card-btn:hover:not(:disabled) {
  background: var(--primary-hover);
}

.pay-with-card-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.card-icons {
  display: flex;
  gap: 0.35rem;
}

.card-icon {
  padding: 0.2rem 0.35rem;
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-icon.visa {
  background: #1a1f71;
  color: white;
}

.card-icon.mc {
  background: #eb001b;
  color: white;
}

.card-icon.amex {
  background: #006fcf;
  color: white;
}

.card-icon.disc {
  background: #ff6600;
  color: white;
}

.payment-divider {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  flex: 1 1;
  height: 1px;
  background: var(--border-color);
}

.payment-divider span {
  padding: 0 1rem;
}

.express-checkout-container {
  margin-bottom: 0.75rem;
}

.venmo-btn {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #008cff;
  color: white;
}

.venmo-btn:hover:not(:disabled) {
  background: #0074d4;
  transform: translateY(-1px);
}

.venmo-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Stripe Link Authentication */
.link-auth-container,
.link-auth-container *,
.link-modal *:not(.link-modal-close) {
  animation: none !important;
  transition: none !important;
}

.link-auth-container {
  margin-bottom: 0.25rem;
}

.link-auth-container label,
.link-auth-container .p-FieldLabel {
  display: none !important;
}

.link-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Checkout Header with Link Sign In */
.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.checkout-header h3 {
  margin-bottom: 0;
}

.link-signin-toggle {
  background: none;
  border: none;
  /*font-size: 0.85rem;*/
  font-size: 1rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
}

.link-signin-toggle:hover:not(:disabled) {
  color: var(--text-color);
}

.link-signin-toggle .link-brand {
  /*color: #00d66f;*/
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: underline;
}

.link-signin-toggle:hover:not(:disabled) .link-brand {
  text-decoration: underline;
}

.link-signin-toggle:disabled,
.link-signin-toggle.preview {
  cursor: not-allowed;
  opacity: 0.6;
}

.link-authenticated {
  font-size: 0.85rem;
  color: var(--success-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.link-check {
  font-size: 0.75rem;
}

.link-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.link-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: 1rem;
}

.link-modal h3 {
  margin-bottom: 0.5rem;
}

.link-modal-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.link-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.link-modal-close:hover {
  color: var(--text-color);
}

.link-hidden-address {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.link-submit-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.625rem 1rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.link-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.link-submit-btn:not(:disabled):hover {
  background: var(--primary-hover);
}

/* Employer Modal Fields */
.employer-modal-fields {
  display: grid;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.employer-modal-fields input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.15s;
  background: var(--background);
}

.employer-modal-fields input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.employer-modal-fields input::placeholder {
  color: var(--text-muted);
}

.employer-modal-fields input:disabled {
  background: var(--background-secondary);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* Amount Subtext */
.amount-subtext {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* Recurring Toggle Checkmark */
.recurring-toggle .checkmark {
  color: var(--success-color);
  margin-right: 0.25rem;
}

/* Contribution Rules */
.contribution-rules {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.contribution-rules h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.contribution-rules ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.contribution-rules li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.contribution-rules .terms-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contribution-rules a {
  color: var(--primary-color);
  text-decoration: none;
}

.contribution-rules a:hover {
  text-decoration: underline;
}

/* Back Button */
.back-button {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
}

.back-button:hover {
  text-decoration: underline;
}

/* Selected Amount Display */
.selected-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--background-secondary);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.selected-amount span {
  color: var(--text-secondary);
}

.selected-amount strong {
  font-size: 1.25rem;
  color: var(--success-color);
}

/* Card Step Styles */
.donation-form.card-step {
  max-width: 100%;
}

/* Welcome Back Section */
.welcome-back {
  margin-bottom: 1.5rem;
}

.welcome-back h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.welcome-back p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Saved Donor Card */
.saved-donor-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--background);
}

.saved-donor-details p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-color);
}

.saved-donor-details .donor-name {
  font-weight: 600;
}

.edit-link {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}

.edit-link:hover {
  text-decoration: underline;
}

.done-editing-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--background-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.done-editing-btn:hover {
  background: var(--border-color);
}

/* Employment Section */
.employment-section {
  margin-bottom: 2rem;
}

.employment-section h3 {
  margin-bottom: 0.5rem;
}

.employment-notice {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.employment-notice strong {
  color: var(--text-color);
}

.retired-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
  cursor: pointer;
  transition: border-color 0.15s;
}

.retired-checkbox:hover {
  border-color: var(--primary-color);
}

.retired-checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.retired-checkbox span {
  font-size: 0.95rem;
  color: var(--text-color);
}

.employment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.employment-fields input {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.15s;
  background: var(--background);
}

.employment-fields input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.employment-fields input::placeholder {
  color: var(--text-muted);
}

.employment-fields input:disabled {
  background: var(--background-secondary);
  color: var(--text-muted);
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .employment-fields {
    grid-template-columns: 1fr;
  }
}

/* Text Opt-in Section */
.text-optin-section {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.optin-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.optin-checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.optin-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.optin-disclaimer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Payment Method Section */
.payment-method-section {
  margin-bottom: 2rem;
}

/* Card Fields */
.card-fields {
  margin-top: 1rem;
}

.card-number-cvv {
  display: grid;
  grid-template-columns: 1fr 100px;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-number-cvv input {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
}

.card-expiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.card-expiry select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  cursor: pointer;
}

/* Reset Form Link */
.reset-form-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.reset-form-link button {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9rem;
}

