/* Modern CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern Color Palette */
  --primary-color: #0070f3;
  --primary-hover: #0051cc;
  --paypal-yellow: #ffc439;
  --paypal-yellow-hover: #f0b429;
  --background: #f8fafc;
  --card-background: #ffffff;
  --text-primary: #1a202c;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --border-focus: #0070f3;
  --error-bg: #fef2f2;
  --error-border: #fecaca;
  --error-text: #dc2626;
  --success-color: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 20px;
}

/* Main Container */
body > * {
  max-width: 720px;
  margin: 0 auto;
}

/* Page Title */
h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

/* Main Input Container */
#input {
  background: var(--card-background);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* JSON Editor */
#jsonEditor {
  display: none;
  width: 600px;
  height: 400px;
  margin-top: 20px;
  transition: height 0.3s ease-out;
}

#jsonEditorToggle {
  display: inline-block;
  margin: 15px 0;
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

#jsonEditorToggle:hover {
  color: var(--primary-hover);
}

/* Form Rows and Columns */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.row:last-of-type {
  border-bottom: none;
}

.row:hover {
  background-color: rgba(0, 112, 243, 0.02);
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  width: 100%;
}

.col input[type="text"] {
  width: 100%;
  max-width: none;
}

/* Labels */
label {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  min-width: 160px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Form Controls */
input[type="text"],
input[type="email"],
input[type="number"],
select {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background-color: var(--card-background);
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

/* Select Dropdown Styling */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}

/* Checkbox Styling */
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-color);
  flex-shrink: 0;
}

/* Toggle Switch Styling for checkboxes with 'switch' attribute */
input[type="checkbox"][switch] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 44px;
  height: 24px;
  background-color: #e2e8f0;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

input[type="checkbox"][switch]:checked {
  background-color: var(--primary-color);
}

input[type="checkbox"][switch]:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

input[type="checkbox"][switch]::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="checkbox"][switch]:checked::before {
  transform: translateX(20px);
}

/* Enhanced mobile styling for toggle switches */
@media (max-width: 768px) {
  input[type="checkbox"][switch] {
    width: 52px;
    height: 28px;
    min-height: 28px;
  }

  input[type="checkbox"][switch]::before {
    width: 20px;
    height: 20px;
    top: 2px;
    left: 2px;
  }

  input[type="checkbox"][switch]:checked::before {
    transform: translateX(24px);
  }
}

/* Tooltip Styling */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Enhanced tooltip for mobile support */
.tooltip:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Question mark icon styling */
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background-color: #7fb9ff; /* Lighter blue background */
  color: white;
  border-radius: 50%; /* Make it circular */
  font-size: 10px;
  font-weight: normal;
  margin-left: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Enhanced touch target for mobile */
@media (max-width: 768px) {
  .tooltip-icon {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    margin-left: 6px;
    cursor: pointer;
  }

  /* Add a subtle press feedback on mobile */
  .tooltip:active .tooltip-icon {
    transform: scale(0.95);
    background-color: #5a9eff;
  }

  /* Make tooltip wrapper more tappable on mobile */
  .tooltip {
    padding: 2px;
    border-radius: 2px;
    transition: background-color 0.2s ease;
  }

  .tooltip:active {
    background-color: rgba(0, 112, 243, 0.05);
  }
}

.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 280px; /* Slightly smaller than before */
  max-width: 90vw; /* Responsive on small screens */
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: #ffffff;
  color: #555555; /* Darker gray for less contrast */
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 12px; /* Smaller font */
  font-weight: normal;
  line-height: 1.5;
  position: absolute;
  bottom: 130%;
  left: 50%;
  margin-left: -140px; /* Half the width */
  z-index: 1000;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Lighter shadow */
  transform: translateY(5px); /* Smaller transform effect */
  border: 1px solid #e8edf5;
  border-left: 2px solid #7fb9ff; /* Lighter blue to match icon */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Additional styling for multiline tooltip content */
.tooltip .tooltiptext p {
  margin: 0 0 8px 0;
}

.tooltip .tooltiptext p:last-child {
  margin-bottom: 0;
}

.tooltip .tooltiptext .tooltip-heading {
  display: block;
  margin-top: 8px;
  margin-bottom: 6px;
  color: #0070f3;
  font-size: 14px;
}

.tooltip .tooltiptext strong {
  display: block;
  margin-top: 8px;
  margin-bottom: 4px;
  color: #0070f3;
  font-weight: 600;
}

.tooltip .tooltiptext .tooltip-spacer {
  height: 8px;
  width: 100%;
}

.tooltip .tooltiptext ul.tooltip-list {
  margin: 0;
  padding: 0 0 8px 0;
  list-style-type: none;
}

.tooltip .tooltiptext li {
  position: relative;
  margin: 0 0 4px 16px;
  padding: 0 0 0 4px;
}

.tooltip .tooltiptext li:before {
  content: "•";
  position: absolute;
  left: -12px;
  color: #0070f3;
}

.tooltip .tooltiptext li:last-child {
  margin-bottom: 0;
}

/* Styling for code references in tooltips */
.tooltip .tooltiptext code {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", monospace;
  font-size: 12px;
  background: #f1f5f9;
  padding: 2px 4px;
  border-radius: 3px;
  color: #0070f3;
  word-break: break-all;
  white-space: normal;
}

/* Arrow for tooltip - default position (top) */
.tooltip .tooltiptext::after,
.tooltip .tooltiptext.tooltip-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
}

/* Bottom positioned tooltip arrow */
.tooltip .tooltiptext.tooltip-bottom::after {
  top: auto;
  bottom: 100%;
  border-color: transparent transparent #ffffff transparent;
  filter: drop-shadow(0 -2px 1px rgba(0, 0, 0, 0.1));
}

/* Left aligned tooltip adjustments */
.tooltip .tooltiptext.tooltip-left::after {
  left: 15px;
}

/* Right aligned tooltip adjustments */
.tooltip .tooltiptext.tooltip-right::after {
  left: auto;
  right: 15px;
}

/* Tooltip visibility - only shows on click */
.tooltip.tooltip-visible .tooltiptext {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Animation for tooltip icon when active */
.tooltip.tooltip-visible .tooltip-icon {
  animation: pulse 1.5s infinite;
  background-color: #0051cc;
}

/* Mobile-specific tooltip enhancements */
@media (max-width: 768px) {
  .tooltip .tooltiptext {
    width: 90vw;
    max-width: 300px;
    font-size: 13px;
    padding: 12px 16px;

    /* Adjust positioning for mobile */
    margin-left: calc(-45vw + 50px); /* Center better on small screens */
  }

  /* Better positioning for mobile tooltips */
  .tooltip .tooltiptext.tooltip-left {
    margin-left: 0;
  }

  .tooltip .tooltiptext.tooltip-right {
    margin-left: calc(-90vw + 100px);
  }

  /* Add subtle backdrop for mobile tooltips */
  .tooltip.tooltip-visible .tooltiptext {
    backdrop-filter: blur(1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(0, 112, 243, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 112, 243, 0);
  }
}

/* Display Sections */
.display {
  margin: 20px 0;
  padding: 16px;
  background: var(--background);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 13px;
}

#userAgentDisplay {
  color: var(--text-secondary);
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 1.4;
  word-break: break-word;
}

#merchantDisplay {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 20px;
}

#merchantDisplay b {
  color: var(--text-primary);
  font-size: 15px;
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
}

/* Hide line breaks and create proper spacing */
#merchantDisplay br {
  display: none;
}

/* Create a proper form layout for merchant info */
#merchantDisplay > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  line-height: 1.6;
}

/* Style text labels before inputs */
#merchantDisplay > div {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Spacing adjustments for merchant inputs within the display */
#merchantDisplay .merchant-input {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Merchant Input Fields */
.merchant-input {
  width: 100%;
  padding: 8px 12px;
  margin: 2px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 12px;
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", monospace;
  background-color: var(--card-background);
  transition: all 0.2s ease;
}

.merchant-input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

.merchant-input:read-only {
  background-color: var(--background);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Merchant Text Display (for read-only fields) */
.merchant-text {
  display: inline-block;
  padding: 8px 12px;
  margin: 2px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 12px;
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", monospace;
  background-color: var(--background);
  color: var(--text-secondary);
  opacity: 0.8;
  min-height: 16px;
  width: calc(100% - 26px); /* Account for padding and border */
}

/* Backend URL Field */
#backendUrl {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", monospace;
  font-size: 13px;
  margin: 8px 0;
  padding: 10px 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--text-primary);
}

/* JSON Editor Container */
#jsonEditor {
  width: 100% !important;
  height: 400px !important;
  margin: 20px 0;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Override JSONEditor styles for better appearance */
.jsoneditor {
  border: none !important;
  border-radius: var(--radius);
}

.jsoneditor-mode-code {
  border: none !important;
}

.ace_editor {
  font-family:
    "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", monospace !important;
  font-size: 13px !important;
}

/* Button Styling */
.button-row {
  display: flex;
  justify-content: center;
  margin: 30px auto 10px;
  width: 100%;
}

button {
  height: 48px;
  width: 300px;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* PayPal Button - Updated with better logo and text handling */
.paypal-button {
  background: linear-gradient(135deg, var(--paypal-yellow) 0%, #ffb400 100%);
  color: #003087;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Try to show PayPal logo first */
.paypal-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 20px;
  background-image: url("/static/paypal.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

/* PayPal text as fallback - now styled like PayPal logo */
.paypal-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 700;
  color: #003087;
  font-family: "Verdana", Arial, sans-serif;
  font-style: italic;
  letter-spacing: -0.5px;
  z-index: 1;
}

/* Note: Using the pseudo-elements above for logo/text and hover effects */

.paypal-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #ffb400 0%, var(--paypal-yellow) 100%);
}

.paypal-button:active:not(:disabled) {
  transform: translateY(0);
}

.paypal-button.loading {
  background: linear-gradient(135deg, var(--paypal-yellow) 0%, #ffb400 100%);
  cursor: not-allowed;
  opacity: 0.8;
}

.paypal-button.loading::before,
.paypal-button.loading::after {
  display: none;
}

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

.paypal-button:disabled::before,
.paypal-button:disabled::after {
  opacity: 0.6;
}

/* Create Order Button */
#createOrder {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0051cc 100%);
  color: white;
}

#createOrder:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0051cc 0%, var(--primary-color) 100%);
}

#createOrder:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Dialog Button */
dialog button {
  width: 200px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  margin: 0 auto;
}

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

/* Loader Animations */
.loader {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}

.page-loader {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Error Message */
.error-message {
  background-color: var(--error-bg);
  color: var(--error-text);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--error-border);
  font-size: 14px;
  display: flex;
  align-items: center;
  animation: fadeIn 0.3s ease-in;
}

.error-message::before {
  content: "⚠️";
  margin-right: 8px;
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dialog Styling */
dialog {
  border: none;
  border-radius: var(--radius-lg);
  max-height: 80vh;
  width: 90%;
  max-width: 400px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  background: var(--card-background);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

dialog:not([open]) {
  display: none;
}

#dialogText {
  overflow-y: auto;
  margin-bottom: 20px;
  max-height: 60vh;
  word-break: break-word;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  user-select: text;
  -webkit-user-select: text;
}

dialog form {
  text-align: center;
}

/* Center Content */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 40px);
  flex-direction: column;
}

.center > div {
  background: var(--card-background);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

#loadingMessage {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Utility Classes */
div[hidden] {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  #input {
    padding: 20px;
  }

  .row,
  div[style*="display: flex"] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Enhanced spacing for toggle switch rows */
  .row {
    padding: 6px 0;
  }

  /* Specific enhanced spacing for rows containing toggle switches */
  input[type="checkbox"][switch] {
    margin: 4px 0;
  }

  label {
    min-width: auto;
    margin-bottom: 4px;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  select {
    max-width: 100%;
    width: 100%;
  }

  #backendUrl {
    width: 100%;
  }

  button {
    width: 100%;
    max-width: 300px;
  }

  #jsonEditor {
    height: 300px !important;
  }
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Smooth Transitions */
input,
select,
button,
.row {
  transition: all 0.2s ease;
}

/* Note Text Styling */
.row b {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

/* Link Styling */
a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Form Section Dividers */
.row + .row {
  margin-top: 4px;
}

/* Custom scrollbar for better appearance */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
  border-radius: var(--radius);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* Custom Alert Modal */
#custom-alert-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
}

#alert-message {
  white-space: pre-wrap;
  text-align: left;
  margin-bottom: 20px;
  word-break: break-all;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#copy-button,
#ok-button {
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f0f0f0;
}

#ok-button {
  border: none;
  background: #007bff;
  color: white;
}

/* PayPal Button Container */
#paypal-button-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  min-height: 48px;
}

/* Home Link - Remove border from row */
.home-link {
  border-bottom: none !important;
}
