/* Deposit Modal Specific Styles - Based on Design Image */

/* Modal Overlay */
.deposit-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

/* Light mode overlay */
.light .deposit-modal-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Modal Container */
.deposit-modal-container {
  background: #1f2937; /* Dark gray background */
  border-radius: 1rem;
  max-width: 90vw;
  max-height: 100vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 2.5rem auto;
  /* Smooth scroll for better UX */
  scroll-behavior: smooth;
}

/* Custom scrollbar design (Webkit browsers: Chrome, Edge, Safari) */
.deposit-modal-container::-webkit-scrollbar {
  width: 8px;
}

.deposit-modal-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.deposit-modal-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.deposit-modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* For Firefox */
.deposit-modal-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) rgba(255, 255, 255, 0.05);
}

/* Light mode container */
.light .deposit-modal-container {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Modal Content */
.deposit-modal-content {
  padding: 0;
}

/* Modal Header */
.deposit-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #1f2937;
}

/* Light mode header */
.light .deposit-modal-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.deposit-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Light mode title */
.light .deposit-modal-title {
  color: #111827;
}

.deposit-modal-title-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24; /* Gold/yellow color */
}

.deposit-modal-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.deposit-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Light mode close button */
.light .deposit-modal-close {
  color: #6b7280;
}

.light .deposit-modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}

/* Modal Body */
.deposit-modal-body {
  padding: 0;
  background: #1f2937;
}

/* Light mode body */
.light .deposit-modal-body {
  background: #ffffff;
}

.deposit-content {
  padding: 1rem;
}

.deposit-main-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

/* Light mode main title */
.light .deposit-main-title {
  color: #111827;
}

.deposit-main-description {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Light mode main description */
.light .deposit-main-description {
  color: #6b7280;
}

/* Section Headers */
.deposit-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.deposit-section-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.deposit-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

/* Light mode section title */
.light .deposit-section-title {
  color: #111827;
}

/* Payment Section */
.deposit-payment-section {
  margin-bottom: 1.5rem;
}

.deposit-payment-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}

/* Light mode payment section title */
.light .deposit-payment-section-title {
  color: #111827;
}

.deposit-payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.deposit-payment-option {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  border: 2px solid #374151;
  border-radius: 0.75rem;
  background: #111827;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.deposit-payment-option:hover {
  background: #1f2937;
  border-color: #4b5563;
}

.deposit-payment-option.active {
  background: #1f2937;
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px #fbbf24;
}

/* Light mode payment options */
.light .deposit-payment-option {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.light .deposit-payment-option:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.light .deposit-payment-option.active {
  background: #f3f4f6;
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px #fbbf24;
}

.payment-option-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.payment-option-logo {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.payment-option-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.payment-option-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Light mode payment option name */
.light .payment-option-name {
  color: #111827;
}

.payment-option-badge {
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  background: #fbbf24;
  color: #ffffff;
}

.payment-option-description {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.3;
}

/* Light mode payment option description */
.light .payment-option-description {
  color: #6b7280;
}

/* Amount Section */
.deposit-amount-section {
  margin-bottom: 1rem;
}

.deposit-amount-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}

/* Light mode amount section title */
.light .deposit-amount-section-title {
  color: #111827;
}

.deposit-amount-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.deposit-amount-choice {
  padding: 0.75rem 1rem;
  border: 2px solid #374151;
  border-radius: 0.5rem;
  background: #111827;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 4rem;
}

.deposit-amount-choice:hover {
  background: #1f2937;
  border-color: #4b5563;
}

.deposit-amount-choice.active {
  background: #fbbf24;
  color: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Light mode amount choices */
.light .deposit-amount-choice {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.light .deposit-amount-choice:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.light .deposit-amount-choice.active {
  background: #fbbf24;
  color: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.withdraw-amount-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.withdraw-amount-choice {
  padding: 0.75rem 1rem;
  border: 2px solid #374151;
  border-radius: 0.5rem;
  background: #111827;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 4rem;
}

.withdraw-amount-choice:hover {
  background: #1f2937;
  border-color: #4b5563;
}

.withdraw-amount-choice.active {
  background: #fbbf24;
  color: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Light mode amount choices */
.light .withdraw-amount-choice {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.light .withdraw-amount-choice:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.light .withdraw-amount-choice.active {
  background: #fbbf24;
  color: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.deposit-amount-input-container {
  position: relative;
}

.deposit-amount-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2rem;
  border: 2px solid #374151;
  border-radius: 0.5rem;
  background: #111827;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  height: 2.75rem;
}

.deposit-amount-input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
  background: #1f2937;
}

.deposit-amount-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* Light mode amount input */
.light .deposit-amount-input {
  background: #ffffff;
  border-color: #d1d5db;
  color: #111827;
}

.light .deposit-amount-input:focus {
  background: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.light .deposit-amount-input::placeholder {
  color: #9ca3af;
}

.deposit-currency-symbol {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
  pointer-events: none;
}

/* Security Notice */
.deposit-security-notice {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 0.5rem;
}

.security-text {
  font-size: 0.875rem;
  color: #fbbf24;
  margin: 0;
  font-weight: 500;
}

/* Light mode security notice */
.light .deposit-security-notice {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.3);
}

.light .security-text {
  color: #d97706;
}


/* Divider */
.deposit-divider {
  height: 1px;
  background: #374151;
  margin: 1.5rem 0;
}

/* Light mode divider */
.light .deposit-divider {
  background: #e5e7eb;
}

/* Checkbox */
.deposit-checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.deposit-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: #fbbf24;
}

.deposit-checkbox-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Light mode checkbox label */
.light .deposit-checkbox-label {
  color: #000;
}

/* Footer */
.deposit-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.deposit-security-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Light mode security info */
.light .deposit-security-info {
  color: #6b7280;
}

.deposit-security-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.deposit-action-buttons {
  display: flex;
  gap: 0.75rem;
}

/* Action Buttons */
.deposit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 2.75rem;
  white-space: nowrap;
}

.deposit-btn:active {
  transform: translateY(1px);
}

.deposit-btn.outline {
  background: transparent;
  color: #ffffff;
  border-color: #4b5563;
}

.deposit-btn.outline:hover {
  background: #374151;
  border-color: #6b7280;
}

.deposit-btn.primary {
  background: #fbbf24;
  color: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.deposit-btn.primary:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
  transform: translateY(-1px);
}

/* Light mode action buttons */
.light .deposit-btn.outline {
  background: transparent;
  color: #374151;
  border-color: #d1d5db;
}

.light .deposit-btn.outline:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.light .deposit-btn.primary {
  background: #fbbf24;
  color: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.light .deposit-btn.primary:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
  transform: translateY(-1px);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .deposit-modal-container {
    margin: 0.5rem;
    max-width: calc(100vw - 1rem);
    max-height: 95vh;
    overflow-y: auto;
    border-radius: 0.25rem;
  }
  
  .deposit-modal-header {
    padding: 0.75rem;
  }
  
  .deposit-modal-title {
    font-size: 1.25rem;
  }
  
  .deposit-modal-body {
    padding: 0.75rem;
  }
  
  .deposit-modal-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .deposit-payment-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .deposit-payment-option {
    padding: 0.75rem;
  }
  
  .payment-option-logo {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .payment-option-name {
    font-size: 0.8rem;
  }
  
  .payment-option-description {
    font-size: 0.7rem;
  }
  
  .deposit-amount-choices {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }
  
  .deposit-amount-choice {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-width: 3rem;
    flex: 1;
  }

  .withdraw-amount-choices {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .withdraw-amount-choice {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-width: 3rem;
    flex: 1;
  }
  
  .deposit-amount-input {
    height: 2.5rem;
    font-size: 0.8rem;
  }
  
  .deposit-modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .deposit-action-buttons {
    justify-content: stretch;
    gap: 0.5rem;
  }
  
  .deposit-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    min-height: 2.5rem;
  }
  
  .deposit-security-info {
    font-size: 0.7rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .deposit-modal-container {
    margin: 0.25rem;
    max-width: calc(100vw - 0.5rem);
    max-height: 100vh;
  }
  
  .deposit-modal-header {
    padding: 0.75rem;
  }
  
  .deposit-content {
    padding: 0.75rem;
  }
  
  .deposit-payment-options {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .deposit-payment-option {
    padding: 0.75rem;
  }
  
  .payment-option-logo {
    width: 1rem;
    height: 1rem;
  }
  
  .payment-option-name {
    font-size: 0.75rem;
  }
  
  .payment-option-description {
    font-size: 0.65rem;
  }
  
  .deposit-amount-choice {
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
    min-width: 2.5rem;
  }

  .withdraw-amount-choice {
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
    min-width: 2.5rem;
  }
  
  .deposit-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

/* Animation for modal appearance */
@keyframes depositModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.deposit-modal-container {
  animation: depositModalFadeIn 0.2s ease-out;
}

/* Focus styles for accessibility */
.deposit-payment-btn:focus,
.deposit-amount-btn:focus,
.deposit-amount-input:focus,
.deposit-btn:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .deposit-modal-container {
    border: 2px solid #ffffff;
  }
  
  .deposit-payment-btn,
  .deposit-amount-btn {
    border-width: 3px;
  }
  
  .deposit-payment-btn.active,
  .deposit-amount-btn.active {
    border-color: #ffffff;
  }
}

/* Security Setup Section */
.deposit-security-setup-section {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border: 1px solid #4b5563;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.security-setup-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.security-setup-icon {
  width: 2rem;
  height: 2rem;
  background: #fbbf24;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-setup-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #1f2937;
}

.security-setup-content {
  flex: 1;
}

.security-setup-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fbbf24;
  margin: 0 0 0.25rem 0;
}

.security-setup-description {
  font-size: 0.875rem;
  color: #d1d5db;
  margin: 0;
  line-height: 1.4;
}

.security-requirements {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.security-requirement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(31, 41, 55, 0.5);
  border-radius: 0.5rem;
  border: 1px solid #374151;
}

.requirement-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.requirement-icon svg {
  width: 100%;
  height: 100%;
}

.requirement-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.requirement-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e7eb;
  margin: 0;
}

.requirement-status {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}

.requirement-status.required {
  background: #fef3c7;
  color: #92400e;
}

.requirement-status.completed {
  background: #d1fae5;
  color: #065f46;
}

.security-setup-action {
  text-align: center;
}

.security-setup-btn {
  background: #fbbf24;
  color: #1f2937;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.security-setup-btn:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}

.security-setup-btn:active {
  transform: translateY(0);
}

/* Light mode security setup */
.light .deposit-security-setup-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-color: #d1d5db;
}

.light .security-setup-title {
  color: #d97706;
}

.light .security-setup-description {
  color: #6b7280;
}

.light .security-requirement-item {
  background: rgba(249, 250, 251, 0.5);
  border-color: #e5e7eb;
}

.light .requirement-title {
  color: #374151;
}

.light .requirement-icon {
  color: #6b7280;
}

/* Security setup responsive */
@media (max-width: 768px) {
  .deposit-security-setup-section {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .security-setup-header {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .security-setup-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .security-setup-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .security-setup-title {
    font-size: 0.875rem;
  }

  .security-setup-description {
    font-size: 0.75rem;
  }

  .security-requirements {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .security-requirement-item {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .requirement-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .requirement-title {
    font-size: 0.75rem;
  }

  .requirement-status {
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
  }

  .security-setup-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .deposit-security-setup-section {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .security-setup-header {
    gap: 0.375rem;
    margin-bottom: 0.5rem;
  }

  .security-setup-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .security-setup-icon svg {
    width: 0.875rem;
    height: 0.875rem;
  }

  .security-setup-title {
    font-size: 0.75rem;
  }

  .security-setup-description {
    font-size: 0.625rem;
  }

  .security-requirements {
    gap: 0.375rem;
    margin-bottom: 0.5rem;
  }

  .security-requirement-item {
    padding: 0.375rem;
    gap: 0.375rem;
  }

  .requirement-icon {
    width: 1rem;
    height: 1rem;
  }

  .requirement-title {
    font-size: 0.625rem;
  }

  .requirement-status {
    font-size: 0.5rem;
    padding: 0.125rem 0.25rem;
  }

  .security-setup-btn {
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
  }
}

/* Security Setup Process Styles */
.security-setup-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.security-step {
  background: rgba(31, 41, 55, 0.3);
  border: 1px solid #374151;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.security-step.completed {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
}

.security-step.current {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: #374151;
  color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.security-step.completed .step-number {
  background: #22c55e;
  color: #ffffff;
}

.security-step.current .step-number {
  background: #fbbf24;
  color: #1f2937;
}

.step-info {
  flex: 1;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin: 0 0 0.25rem 0;
}

.step-description {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}

.step-status {
  flex-shrink: 0;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.completed {
  background: #d1fae5;
  color: #065f46;
}

.status-badge.current {
  background: #dbeafe;
  color: #1e40af;
}

.step-content {
  margin-left: 3rem;
}

.verification-form,
.pin-form,
.kyc-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e7eb;
}

.form-input {
  background: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: #e5e7eb;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.verification-btn {
  background: #fbbf24;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-top: 15px;
}

.verification-btn:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}

.verification-btn:active {
  transform: translateY(0);
}

.verification-btn:disabled {
  background: #6b7280;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.file-upload {
  position: relative;
}

.upload-btn {
  background: #374151;
  border: 2px dashed #4b5563;
  border-radius: 0.5rem;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #9ca3af;
}

.upload-btn:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

.upload-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Image preview styles */
.image-preview {
  margin-top: 12px;
  padding: 12px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 8px;
}

.preview-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px;
}

.preview-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #374151;
}

.preview-actions {
  position: absolute;
  top: 8px;
  right: 8px;
}

.preview-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(239, 68, 68, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preview-remove-btn:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.preview-filename {
  margin: 8px 0 0 0;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  word-break: break-all;
}

/* Light mode image preview styles */
.light .image-preview {
  background: #ffffff;
  border-color: #e5e7eb;
}

.light .preview-image {
  border-color: #e5e7eb;
}

.light .preview-filename {
  color: #6b7280;
}

.verification-code-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

/* Light mode security setup process */
.light .security-step {
  background: rgba(249, 250, 251, 0.3);
  border-color: #e5e7eb;
}

.light .security-step.completed {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
}

.light .security-step.current {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.light .step-number {
  background: #e5e7eb;
  color: #374151;
}

.light .step-title {
  color: #374151;
}

.light .step-description {
  color: #6b7280;
}

.light .form-input {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.light .form-input:focus {
  border-color: #fbbf24;
}

.light .form-label {
  color: #374151;
}

.light .upload-btn {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #6b7280;
}

.light .upload-btn:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

.light .verification-code-section {
  border-color: #e5e7eb;
}

/* Security setup process responsive */
@media (max-width: 768px) {
  .security-setup-steps {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .security-step {
    padding: 1rem;
  }

  .step-header {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .step-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }

  .step-title {
    font-size: 0.875rem;
  }

  .step-description {
    font-size: 0.75rem;
  }

  .step-content {
    margin-left: 2.5rem;
  }

  .verification-form,
  .pin-form,
  .kyc-form {
    gap: 0.75rem;
  }

  .form-input {
    padding: 0.625rem;
    font-size: 0.75rem;
  }

  .verification-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
  }

  .upload-btn {
    padding: 1rem;
  }

  .upload-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 480px) {
  .security-step {
    padding: 0.75rem;
  }

  .step-header {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .step-number {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.625rem;
  }

  .step-title {
    font-size: 0.75rem;
  }

  .step-description {
    font-size: 0.625rem;
  }

  .step-content {
    margin-left: 2rem;
  }

  .form-input {
    padding: 0.5rem;
    font-size: 0.625rem;
  }

  .verification-btn {
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
  }

  .upload-btn {
    padding: 0.75rem;
  }

  .upload-btn svg {
    width: 1rem;
    height: 1rem;
  }
}

/* Security Setup Success Message */
.security-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 1rem;
}

.security-success-content {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: successPulse 0.6s ease-out;
}

.success-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
  margin: 0 0 0.75rem 0;
}

.success-message {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.success-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.success-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #e5e7eb;
}

.success-check {
  width: 1.25rem;
  height: 1.25rem;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.success-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.loading-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #374151;
  border-top: 2px solid #fbbf24;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Light mode success message */
.light .security-success-overlay {
  background: rgba(255, 255, 255, 0.95);
}

.light .security-success-content {
  background: #ffffff;
  border-color: #e5e7eb;
}

.light .success-title {
  color: #22c55e;
}

.light .success-message {
  color: #6b7280;
}

.light .success-details {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.light .success-item {
  color: #374151;
}

.light .success-loading {
  color: #6b7280;
}

/* Success message responsive */
@media (max-width: 768px) {
  .security-success-content {
    padding: 1.5rem;
    max-width: 350px;
  }

  .success-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .success-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .success-title {
    font-size: 1.25rem;
  }

  .success-message {
    font-size: 0.875rem;
  }

  .success-details {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .success-item {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .success-check {
    width: 1rem;
    height: 1rem;
    font-size: 0.625rem;
  }

  .success-loading {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .security-success-content {
    padding: 1rem;
    max-width: 300px;
  }

  .success-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .success-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .success-title {
    font-size: 1.125rem;
  }

  .success-message {
    font-size: 0.75rem;
  }

  .success-details {
    padding: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .success-item {
    font-size: 0.625rem;
    gap: 0.375rem;
  }

  .success-check {
    width: 0.875rem;
    height: 0.875rem;
    font-size: 0.5rem;
  }

  .success-loading {
    font-size: 0.625rem;
  }
}

/* Deposit Processing Overlay */
.deposit-processing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 1rem;
}

.deposit-processing-content {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.processing-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.processing-spinner {
  width: 3rem;
  height: 3rem;
  border: 3px solid #374151;
  border-top: 3px solid #fbbf24;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.processing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin: 0 0 0.75rem 0;
}

.processing-message {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.processing-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.processing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.processing-label {
  color: #9ca3af;
}

.processing-value {
  color: #e5e7eb;
  font-weight: 600;
}

.processing-status {
  color: #fbbf24;
  font-weight: 600;
}

.processing-progress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-bar {
  width: 100%;
  height: 0.5rem;
  background: #374151;
  border-radius: 0.25rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 0.25rem;
  width: 0;
  transition: width 0.3s ease;
}

.progress-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Deposit Success Overlay */
.deposit-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 1rem;
}

.deposit-success-content {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.deposit-success-content .success-icon {
  width: 4rem;
  height: 4rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: successPulse 0.6s ease-out;
}

.deposit-success-content .success-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.deposit-success-content .success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
  margin: 0 0 0.75rem 0;
}

.deposit-success-content .success-message {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.deposit-success-content .success-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.deposit-success-content .success-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.deposit-success-content .success-label {
  color: #9ca3af;
}

.deposit-success-content .success-value {
  color: #e5e7eb;
  font-weight: 600;
}

.deposit-success-content .success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.success-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.success-btn.primary {
  background: #22c55e;
  color: #ffffff;
}

.success-btn.primary:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

/* Light mode for deposit processing */
.light .deposit-processing-overlay {
  background: rgba(255, 255, 255, 0.95);
}

.light .deposit-processing-content {
  background: #ffffff;
  border-color: #e5e7eb;
}

.light .processing-title {
  color: #fbbf24;
}

.light .processing-message {
  color: #6b7280;
}

.light .processing-details {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.2);
}

.light .processing-label {
  color: #6b7280;
}

.light .processing-value {
  color: #374151;
}

.light .processing-status {
  color: #fbbf24;
}

.light .progress-text {
  color: #6b7280;
}

/* Light mode for deposit success */
.light .deposit-success-overlay {
  background: rgba(255, 255, 255, 0.95);
}

.light .deposit-success-content {
  background: #ffffff;
  border-color: #e5e7eb;
}

.light .deposit-success-content .success-title {
  color: #22c55e;
}

.light .deposit-success-content .success-message {
  color: #6b7280;
}

.light .deposit-success-content .success-details {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.light .deposit-success-content .success-label {
  color: #6b7280;
}

.light .deposit-success-content .success-value {
  color: #374151;
}

/* Responsive styles for deposit processing and success */
@media (max-width: 768px) {
  .deposit-processing-content,
  .deposit-success-content {
    padding: 1.5rem;
    max-width: 350px;
  }

  .processing-icon,
  .deposit-success-content .success-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .processing-spinner {
    width: 2rem;
    height: 2rem;
  }

  .processing-title,
  .deposit-success-content .success-title {
    font-size: 1.25rem;
  }

  .processing-message,
  .deposit-success-content .success-message {
    font-size: 0.875rem;
  }

  .processing-details,
  .deposit-success-content .success-details {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .processing-item,
  .deposit-success-content .success-item {
    font-size: 0.75rem;
  }

  .progress-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .deposit-processing-content,
  .deposit-success-content {
    padding: 1rem;
    max-width: 300px;
  }

  .processing-icon,
  .deposit-success-content .success-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .processing-spinner {
    width: 1.5rem;
    height: 1.5rem;
  }

  .processing-title,
  .deposit-success-content .success-title {
    font-size: 1.125rem;
  }

  .processing-message,
  .deposit-success-content .success-message {
    font-size: 0.75rem;
  }

  .processing-details,
  .deposit-success-content .success-details {
    padding: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .processing-item,
  .deposit-success-content .success-item {
    font-size: 0.625rem;
  }

  .progress-text {
    font-size: 0.625rem;
  }
}

/* Withdrawal Processing Overlay */
.withdrawal-processing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 1rem;
}

.withdrawal-processing-content {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.withdrawal-processing-content .processing-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.withdrawal-processing-content .processing-spinner {
  width: 3rem;
  height: 3rem;
  border: 3px solid #374151;
  border-top: 3px solid #fbbf24;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.withdrawal-processing-content .processing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin: 0 0 0.75rem 0;
}

.withdrawal-processing-content .processing-message {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.withdrawal-processing-content .processing-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.withdrawal-processing-content .processing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.withdrawal-processing-content .processing-label {
  color: #9ca3af;
}

.withdrawal-processing-content .processing-value {
  color: #e5e7eb;
  font-weight: 600;
}

.withdrawal-processing-content .processing-status {
  color: #fbbf24;
  font-weight: 600;
}

.withdrawal-processing-content .processing-progress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.withdrawal-processing-content .progress-bar {
  width: 100%;
  height: 0.5rem;
  background: #374151;
  border-radius: 0.25rem;
  overflow: hidden;
}

.withdrawal-processing-content .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 0.25rem;
  width: 0;
  transition: width 0.3s ease;
}

.withdrawal-processing-content .progress-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Withdrawal Success Overlay */
.withdrawal-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 1rem;
}

.withdrawal-success-content {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.withdrawal-success-content .success-icon {
  width: 4rem;
  height: 4rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: successPulse 0.6s ease-out;
}

.withdrawal-success-content .success-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.withdrawal-success-content .success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
  margin: 0 0 0.75rem 0;
}

.withdrawal-success-content .success-message {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.withdrawal-success-content .success-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.withdrawal-success-content .success-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.withdrawal-success-content .success-label {
  color: #9ca3af;
}

.withdrawal-success-content .success-value {
  color: #e5e7eb;
  font-weight: 600;
}

.withdrawal-success-content .success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.withdrawal-success-content .success-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.withdrawal-success-content .success-btn.primary {
  background: #22c55e;
  color: #ffffff;
}

.withdrawal-success-content .success-btn.primary:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

/* Light mode for withdrawal processing */
.light .withdrawal-processing-overlay {
  background: rgba(255, 255, 255, 0.95);
}

.light .withdrawal-processing-content {
  background: #ffffff;
  border-color: #e5e7eb;
}

.light .withdrawal-processing-content .processing-title {
  color: #fbbf24;
}

.light .withdrawal-processing-content .processing-message {
  color: #6b7280;
}

.light .withdrawal-processing-content .processing-details {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.2);
}

.light .withdrawal-processing-content .processing-label {
  color: #6b7280;
}

.light .withdrawal-processing-content .processing-value {
  color: #374151;
}

.light .withdrawal-processing-content .processing-status {
  color: #fbbf24;
}

.light .withdrawal-processing-content .progress-text {
  color: #6b7280;
}

/* Light mode for withdrawal success */
.light .withdrawal-success-overlay {
  background: rgba(255, 255, 255, 0.95);
}

.light .withdrawal-success-content {
  background: #ffffff;
  border-color: #e5e7eb;
}

.light .withdrawal-success-content .success-title {
  color: #22c55e;
}

.light .withdrawal-success-content .success-message {
  color: #6b7280;
}

.light .withdrawal-success-content .success-details {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.light .withdrawal-success-content .success-label {
  color: #6b7280;
}

.light .withdrawal-success-content .success-value {
  color: #374151;
}

/* Responsive styles for withdrawal processing and success */
@media (max-width: 768px) {
  .withdrawal-processing-content,
  .withdrawal-success-content {
    padding: 1.5rem;
    max-width: 350px;
  }

  .withdrawal-processing-content .processing-icon,
  .withdrawal-success-content .success-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .withdrawal-processing-content .processing-spinner {
    width: 2rem;
    height: 2rem;
  }

  .withdrawal-processing-content .processing-title,
  .withdrawal-success-content .success-title {
    font-size: 1.25rem;
  }

  .withdrawal-processing-content .processing-message,
  .withdrawal-success-content .success-message {
    font-size: 0.875rem;
  }

  .withdrawal-processing-content .processing-details,
  .withdrawal-success-content .success-details {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .withdrawal-processing-content .processing-item,
  .withdrawal-success-content .success-item {
    font-size: 0.75rem;
  }

  .withdrawal-processing-content .progress-text {
    font-size: 0.75rem;
  }

  /* Image preview responsive */
  .preview-container {
    max-width: 150px;
  }

  .preview-image {
    height: 100px;
  }

  .preview-remove-btn {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .withdrawal-processing-content,
  .withdrawal-success-content {
    padding: 1rem;
    max-width: 300px;
  }

  .withdrawal-processing-content .processing-icon,
  .withdrawal-success-content .success-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .withdrawal-processing-content .processing-spinner {
    width: 1.5rem;
    height: 1.5rem;
  }

  .withdrawal-processing-content .processing-title,
  .withdrawal-success-content .success-title {
    font-size: 1.125rem;
  }

  .withdrawal-processing-content .processing-message,
  .withdrawal-success-content .success-message {
    font-size: 0.75rem;
  }

  .withdrawal-processing-content .processing-details,
  .withdrawal-success-content .success-details {
    padding: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .withdrawal-processing-content .processing-item,
  .withdrawal-success-content .success-item {
    font-size: 0.625rem;
  }

  .withdrawal-processing-content .progress-text {
    font-size: 0.625rem;
  }
}
