/* Bank Transfer Payment Styles */
.ff-bank-transfer-container {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #f9f9f9;
}

/* Typography */
.ff-bank-details h4,
.ff-payment-instructions h4 {
  color: #343a40;
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* Bank Details List */
.ff-bank-details li {
  margin-bottom: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #dee2e6;
  display: flex;
}

.ff-bank-details li strong {
  min-width: 120px;
  display: inline-block;
  color: #495057;
  padding-right: 10px;
}

/* Sections Styling */
.ff-payment-instructions {
  margin: 20px 0;
  padding: 15px;
  background: #f0f7ff;
  border-left: 4px solid #2271b1;
}

/* Helper Text */
.ff-help-text {
  font-size: 0.85em;
  color: #6c757d;
  margin-top: 5px;
}

.ff-required {
  color: #dc3545;
  margin-left: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ff-bank-details li {
    flex-direction: column;
  }

  .ff-bank-details li strong {
    min-width: 100%;
    margin-bottom: 5px;
  }
}
