/**
 * Account Dashboard Styles
 * Styles for the SCB Account Dashboard Shortcode
 * IMPORTANT: Using !important and high specificity to override Elementor and other themes
 */

/* High specificity selectors to override Elementor */
.profile-wrapper .scb-btn,
.profile-wrapper button.scb-btn,
.profile-wrapper a.scb-btn,
.profile-wrapper input.scb-btn,
.profile-wrapper .scb-btn-primary,
.profile-wrapper .scb-btn-secondary,
.profile-wrapper .scb-btn-cancel,
.profile-wrapper .scb-btn-cashout {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  margin-right: 10px !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  letter-spacing: 0.3px !important;
  display: inline-block !important;
  text-decoration: none !important;
  text-align: center !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
  line-height: 1.4 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* Override para botones de cancelar */
.profile-wrapper .scb-btn-cancel {
  background: linear-gradient(135deg, #64748b, #475569) !important;
}

/* Override para efectos hover */
.profile-wrapper .scb-btn:hover,
.profile-wrapper button.scb-btn:hover,
.profile-wrapper a.scb-btn:hover,
.profile-wrapper .scb-btn-primary:hover,
.profile-wrapper .scb-btn-secondary:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  color: white !important;

/* Recent Transactions - Modern Design */
.recent-transactions {
  margin-top: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  position: relative;
}

.recent-transactions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5a27, #4a7c59, #22c55e);
}

.recent-transactions .section-header {
  padding: 32px 32px 24px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.recent-transactions .section-header h3 {
  margin: 0;
  color: #1e293b;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
}

.recent-transactions .section-header h3 i {
  background: linear-gradient(135deg, #2d5a27, #4a7c59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 26px;
}

.recent-transactions .section-header .transaction-summary {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.recent-transactions .section-header .summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(45, 90, 39, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(45, 90, 39, 0.1);
}

.recent-transactions .section-header .summary-item i {
  color: #2d5a27;
  font-size: 14px;
}

.recent-transactions .section-header .summary-item span {
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.transactions-container {
  position: relative;
  overflow: hidden;
}

.transactions-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  background: transparent;
}

.transactions-table thead tr {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.transactions-table th {
  background: transparent;
  color: #475569;
  font-weight: 700;
  text-align: left;
  padding: 20px 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #cbd5e1;
  position: relative;
}

.transactions-table th:first-child {
  border-radius: 0;
}

.transactions-table th:last-child {
  border-radius: 0;
}

.transactions-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f5f9;
}

.transactions-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.02) 0%, rgba(45, 90, 39, 0.05) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.transactions-table tbody tr:last-child {
  border-bottom: none;
}

.transactions-table td {
  padding: 24px 32px;
  color: #334155;
  font-weight: 500;
  vertical-align: middle;
  position: relative;
}

.transaction-type {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1e293b;
  font-size: 15px;
}

.transaction-type-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.transaction-type-icon.cashback {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.transaction-type-icon.shopping {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.transaction-type-icon.bonus {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.transaction-type-icon.referral {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.transaction-amount {
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.transaction-amount.positive {
  color: #16a34a;
}

.transaction-amount.positive::before {
  content: '+';
  color: #16a34a;
  font-weight: 700;
}

.transaction-amount.negative {
  color: #dc2626;
}

.transaction-amount.negative::before {
  content: '-';
  color: #dc2626;
  font-weight: 700;
}

.transaction-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.transaction-status.pending {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border-color: rgba(252, 211, 77, 0.3);
}

.transaction-status.completed {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border-color: rgba(34, 197, 94, 0.3);
}

.transaction-status.failed {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
  border-color: rgba(239, 68, 68, 0.3);
}

.transaction-status i {
  font-size: 10px;
}

.transaction-date {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.transaction-date .date-primary {
  color: #374151;
  font-weight: 600;
}

.transaction-date .date-secondary {
  color: #9ca3af;
  font-size: 12px;
}

.transactions-empty-state {
  text-align: center;
  padding: 80px 32px;
  color: #64748b;
}

.transactions-empty-state .empty-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.transactions-empty-state .empty-icon::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.transactions-empty-state .empty-icon i {
  font-size: 48px;
  color: #cbd5e1;
  position: relative;
  z-index: 1;
}

.transactions-empty-state h4 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: #374151;
}

.transactions-empty-state p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.transactions-loading {
  text-align: center;
  padding: 60px 32px;
  color: #64748b;
}

.transactions-loading .loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border: 3px solid #e2e8f0;
  border-top: 3px solid #2d5a27;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.transactions-loading p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .recent-transactions .section-header {
    padding: 24px 20px 20px 20px;
  }
  
  .recent-transactions .section-header h3 {
    font-size: 20px;
  }
  
  .recent-transactions .section-header .transaction-summary {
    gap: 12px;
  }
  
  .transactions-table th,
  .transactions-table td {
    padding: 16px 20px;
  }
  
  .transactions-table {
    font-size: 14px;
  }
  
  .transaction-type {
    font-size: 14px;
  }
  
  .transaction-type-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .transaction-amount {
    font-size: 16px;
  }
  
  .transactions-empty-state {
    padding: 60px 20px;
  }
  
  .transactions-empty-state .empty-icon {
    width: 80px;
    height: 80px;
  }
  
  .transactions-empty-state .empty-icon i {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .transactions-table {
    font-size: 12px;
  }
  
  .transactions-table th,
  .transactions-table td {
    padding: 12px 16px;
  }
  
  .transaction-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .transaction-type-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
  text-decoration: none !important;
}

.profile-wrapper .scb-btn-cancel:hover {
  background: linear-gradient(135deg, #475569, #334155) !important;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3) !important;
}

/* Overrides específicos para botones en contextos específicos */
.profile-wrapper .card .scb-btn-cashout,
.profile-wrapper .card button.scb-btn-cashout {
  padding: 8px 16px !important;
  font-size: 13px !important;
  margin-top: 12px !important;
  text-transform: uppercase !important;
}

.profile-wrapper .email-verification-panel .scb-btn {
  width: 100% !important;
  padding: 16px !important;
  font-size: 16px !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
}

/* Disable state overrides */
.profile-wrapper .scb-btn:disabled,
.profile-wrapper button.scb-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  background: linear-gradient(135deg, #64748b, #475569) !important;
}

/* Loading state overrides */
.profile-wrapper .scb-btn.scb-loading {
  position: relative !important;
  pointer-events: none !important;
}

.profile-wrapper .scb-btn.scb-loading::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 16px !important;
  height: 16px !important;
  margin: -8px 0 0 -8px !important;
  border: 2px solid transparent !important;
  border-top: 2px solid #fff !important;
  border-radius: 50% !important;
  animation: scb-spin 1s linear infinite !important;
}

.profile-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  overflow-x: hidden;
  position: relative;
}

.profile-layout {
  display: flex;
  gap: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #334155;
  flex-wrap: wrap;
  position: relative;
}

.sidebar {
  width: 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e1e5e9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar .user-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f5f6f8;
  margin: 0 auto 15px;
  background-size: cover;
  background-position: center;
  border: 3px solid #e1e5e9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sidebar .user-name {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #334155;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.sidebar .member-since {
  font-size: 14px;
  text-align: center;
  color: #64748b;
  margin-bottom: 30px;
  font-weight: 500;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f9fb;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  font-size: 15px;
  margin-bottom: 4px;
}

.sidebar nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #2d5a27, #4a7c59);
  transition: width 0.3s ease;
  border-radius: 12px 0 0 12px;
}

.sidebar nav a:hover {
  background: #ffffff;
  color: #475569;
  padding-left: 28px;
  border-color: #e2e8f0;
  transform: translateX(2px);
}

.sidebar nav a:hover::before {
  width: 4px;
}

.sidebar nav a.active {
  background: #ffffff;
  color: #475569;
  font-weight: 600;
  padding-left: 28px;
  border-color: #e2e8f0;
}

.sidebar nav a.active::before {
  width: 4px;
  background: linear-gradient(135deg, #2d5a27, #4a7c59);
}

.sidebar nav a.active::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #2d5a27;
  border-radius: 50%;
}

.sidebar nav a i {
  font-size: 16px;
  color: #94a3b8;
  width: 20px;
  text-align: center;
}

.sidebar nav a:hover i,
.sidebar nav a.active i {
  color: #475569;
}

/* Email verification badge in sidebar */
.sidebar .email-verification {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidebar .email-verification.verified {
  background: rgba(45, 90, 39, 0.1);
  color: #2d5a27;
  border-color: rgba(45, 90, 39, 0.3);
}

.sidebar .email-verification.unverified {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  border-color: rgba(255, 152, 0, 0.3);
}

.sidebar .email-verification i {
  font-size: 14px;
}

/* Email verification badge clickable functionality */
.sidebar .email-verification.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar .email-verification.clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  background: rgba(255, 152, 0, 0.15);
}

.sidebar .email-verification.unverified.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar .email-verification.unverified.clickable:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.5);
  transform: translateY(-1px);
}

.sidebar .email-verification .resend-icon {
  font-size: 10px;
  opacity: 0.7;
}

.dashboard-content {
  flex: 1;
  min-width: 280px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.dashboard-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.dashboard-cards .card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.dashboard-cards .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.dashboard-cards .card p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-cards .card h3 {
  margin: 12px 0;
  font-size: 28px;
  font-weight: 700;
  color: #334155;
  letter-spacing: -0.5px;
}

.card small {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 500;
}

.card-split {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
}

.card .btn-cashout,
.card .scb-btn-cashout {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
  border: none !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  margin-top: 12px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.card .btn-cashout:hover,
.card .scb-btn-cashout:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
  color: white !important;
}

.step-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: start;
}

.step {
  min-width: 150px;
  max-width: 200px;
  flex: 1;
  height: 130px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.step:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.step:active {
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.step-button {
  cursor: pointer;
  user-select: none;
}

.step-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.step strong {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d5a27;
  letter-spacing: -0.5px;
}

.step::after {
  content: '→';
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 16px;
  color: #2d5a27;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover::after {
  opacity: 1;
}

.step.done {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 2px solid #2d5a27;
  color: #64748b;
}

.step.done:hover {
  background: linear-gradient(135deg, #f1f5f9, #f8fafc);
  border: 2px solid #1f4219;
}

.step.done strong {
  color: #2d5a27;
}

.step.active {
  background: #ffffff;
  border: 2px solid #2d5a27;
}

.step.active:hover {
  border: 2px solid #1f4219;
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.15);
}

.step.inactive {
  background: #f8fafc;
  opacity: 0.6;
  color: #94a3b8;
  border-color: #e2e8f0;
}

.step.inactive:hover {
  opacity: 0.8;
  background: #f1f5f9;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-group small {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* Botones SCB - Clases únicas para evitar conflictos con Elementor */
.scb-btn {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  margin-right: 10px !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  letter-spacing: 0.3px !important;
  display: inline-block !important;
  text-decoration: none !important;
  text-align: center !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
  line-height: 1.4 !important;
}

.scb-btn-secondary {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
}

.scb-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3) !important;
  color: white !important;
  text-decoration: none !important;
}

.scb-btn-secondary:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  color: white !important;
}

/* Estilo especial para botones de cancelar */
.scb-btn-cancel {
  background: linear-gradient(135deg, #64748b, #475569) !important;
  color: white !important;
}

.scb-btn-cancel:hover {
  background: linear-gradient(135deg, #475569, #334155) !important;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3) !important;
  color: white !important;
}

.scb-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.scb-btn.scb-loading {
  position: relative !important;
  pointer-events: none !important;
}

.scb-btn.scb-loading::after {
.scb-btn.scb-loading::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 16px !important;
  height: 16px !important;
  margin: -8px 0 0 -8px !important;
  border: 2px solid transparent !important;
  border-top: 2px solid #fff !important;
  border-radius: 50% !important;
  animation: scb-spin 1s linear infinite !important;
}

/* Botón de Cash Out con clases únicas */
.scb-btn-cashout {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
  border: none !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  margin-top: 12px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  text-decoration: none !important;
  text-align: center !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
  line-height: 1.4 !important;
}

.scb-btn-cashout:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
  color: white !important;
  text-decoration: none !important;
}

/* Botón primario con clases únicas */
.scb-btn-primary {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  border: none !important;
  color: white !important;
}

.scb-btn-primary:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  color: white !important;
}

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

/* Mantener compatibilidad con clases originales pero con !important para override */
.btn {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  margin-right: 10px !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  letter-spacing: 0.3px !important;
  display: inline-block !important;
  text-decoration: none !important;
  text-align: center !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
  line-height: 1.4 !important;
}

.btn-secondary {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
}

.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3) !important;
  color: white !important;
  text-decoration: none !important;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  color: white !important;
}

.btn-cancel {
  background: linear-gradient(135deg, #64748b, #475569) !important;
  color: white !important;
}

.btn-cancel:hover {
  background: linear-gradient(135deg, #475569, #334155) !important;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3) !important;
  color: white !important;
}

.btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.btn.loading {
  position: relative !important;
  pointer-events: none !important;
}

.btn.loading::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 16px !important;
  height: 16px !important;
  margin: -8px 0 0 -8px !important;
  border: 2px solid transparent !important;
  border-top: 2px solid #fff !important;
  border-radius: 50% !important;
  animation: scb-spin 1s linear infinite !important;
}

.btn-primary {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  border: none !important;
  color: white !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  color: white !important;
}

.alert {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.withdrawal-methods {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.withdrawal-method {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.favorite-store {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #dee2e6;
}

/* Profile Information Styles */
.profile-header {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
  color: white;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.3);
}

.profile-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-header-info h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-subtitle {
  margin: 0 0 15px 0;
  font-size: 16px;
  opacity: 0.9;
  font-weight: 300;
}

.profile-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-verified {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-active {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #2d5a27;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2d5a27, #4a7c59);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: white;
  font-size: 20px;
}

.info-content {
  flex: 1;
}

.info-content label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.info-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  word-break: break-word;
}

.balance-amount {
  color: #2ecc71 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.earnings-amount {
  color: #f39c12 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.profile-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2d5a27, #4a7c59);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

/* Email Verification Panel */
.email-verification-panel {
  position: absolute;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100%;
  min-height: 600px;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  flex-direction: column;
  transform: translateX(0);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-radius: 16px 0 0 16px;
}

.email-verification-panel.panel-active {
  right: -30px;
}

.email-verification-panel.panel-closing {
  right: -450px;
}

.email-verification-panel .panel-header {
  background: linear-gradient(135deg, #2d5a27, #4a7c59);
  color: white;
  padding: 24px;
  position: relative;
  box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
}

.email-verification-panel .panel-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-verification-panel .panel-header .close-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}

.email-verification-panel .panel-header .close-panel:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.email-verification-panel .panel-content {
  flex: 1;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.email-verification-panel .verification-status {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(45, 90, 39, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(45, 90, 39, 0.3);
}

.email-verification-panel .status-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2d5a27, #4a7c59);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.email-verification-panel .status-text h4 {
  margin: 0 0 8px 0;
  color: #334155;
  font-size: 18px;
  font-weight: 700;
}

.email-verification-panel .status-text p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.email-verification-panel .verification-benefits {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.email-verification-panel .verification-benefits h5 {
  margin: 0 0 16px 0;
  color: #334155;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-verification-panel .verification-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.email-verification-panel .verification-benefits li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
}

.email-verification-panel .verification-benefits li:last-child {
  margin-bottom: 0;
}

.email-verification-panel .verification-benefits li i {
  color: #22c55e;
  font-size: 12px;
  width: 16px;
}

.email-verification-panel .verification-actions {
  text-align: center;
}

.email-verification-panel .verification-actions .btn,
.email-verification-panel .verification-actions .scb-btn {
  width: 100% !important;
  padding: 16px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: all 0.3s ease !important;
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
  border: none !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.email-verification-panel .verification-actions .btn:hover,
.email-verification-panel .verification-actions .scb-btn:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  color: white !important;
  text-decoration: none !important;
}

.email-verification-panel .verification-actions .btn:disabled,
.email-verification-panel .verification-actions .scb-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.email-verification-panel .verification-actions .btn:disabled:hover,
.email-verification-panel .verification-actions .scb-btn:disabled:hover {
  transform: none !important;
  box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2) !important;
}

.email-verification-panel .resend-note {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  line-height: 1.4;
}

.email-verification-panel .resend-note i {
  color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
}

.email-verification-panel .verification-feedback {
  margin-top: 20px;
}

.email-verification-panel .feedback-success,
.email-verification-panel .feedback-error {
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.email-verification-panel .feedback-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #059669;
}

.email-verification-panel .feedback-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.email-verification-panel .feedback-success i,
.email-verification-panel .feedback-error i {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.email-verification-panel .feedback-success strong,
.email-verification-panel .feedback-error strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.email-verification-panel .feedback-success p,
.email-verification-panel .feedback-error p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Email verification notifications */
.email-verification-notice {
  position: relative;
  margin-bottom: 24px;
  padding: 16px 50px 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: slideInFromTop 0.5s ease-out;
}

.email-verification-notice i:first-child {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.email-verification-notice strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 16px;
}

.email-verification-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.email-verification-notice .close-notification {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.email-verification-notice .close-notification:hover {
  opacity: 1;
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive adjustments for the panel */
@media (max-width: 1024px) {
  .email-verification-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    z-index: 10000;
  }
  
  .email-verification-panel.panel-active {
    transform: translateX(0);
    right: 0;
  }
  
  .email-verification-panel.panel-closing {
    transform: translateX(100%);
    right: 0;
  }
  
  .profile-wrapper.panel-open,
  .profile-wrapper.panel-closed {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .email-verification-panel .panel-content {
    padding: 20px 16px;
  }
}

/* Loading spinner animation for the resend button */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fa-spinner.fa-spin {
  animation: spin 1s linear infinite;
}

/* Overlay for mobile when panel is open */
@media (max-width: 1024px) {
  .email-verification-panel.panel-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

/* ==========================================
   OVERRIDES FINALES PARA ELEMENTOR Y TEMAS
   MÁXIMA ESPECIFICIDAD ANTI-ELEMENTOR
   ========================================== */

/* Selectores súper específicos para vencer a Elementor */
html body div.profile-wrapper .btn[data-scb-btn] {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  background-color: #2d5a27 !important;
  color: white !important;
  border: none !important;
  border-color: transparent !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

/* Estilos anti-Elementor con máxima especificidad */
html body .elementor .profile-wrapper .scb-btn,
html body .elementor-section .profile-wrapper .scb-btn,
html body .elementor-widget .profile-wrapper .scb-btn,
html body .elementor-container .profile-wrapper .scb-btn,
html body div[data-elementor-type] .profile-wrapper .scb-btn,
html body .wp-block .profile-wrapper .scb-btn,
html body .entry-content .profile-wrapper .scb-btn {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  background-color: #2d5a27 !important;
  color: white !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  display: inline-block !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
  min-height: auto !important;
  width: auto !important;
  height: auto !important;
  margin-right: 10px !important;
  letter-spacing: 0.3px !important;
  vertical-align: middle !important;
  outline: none !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* Hover states con máxima especificidad anti-Elementor */
html body .elementor .profile-wrapper .scb-btn:hover,
html body .elementor-section .profile-wrapper .scb-btn:hover,
html body .elementor-widget .profile-wrapper .scb-btn:hover,
html body .elementor-container .profile-wrapper .scb-btn:hover,
html body div[data-elementor-type] .profile-wrapper .scb-btn:hover,
html body .wp-block .profile-wrapper .scb-btn:hover,
html body .entry-content .profile-wrapper .scb-btn:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  background-color: #1f4219 !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  border-color: transparent !important;
}

/* Estados especiales para botones de cancelar */
html body .elementor .profile-wrapper .scb-btn-cancel,
html body .elementor-section .profile-wrapper .scb-btn-cancel,
html body .elementor-widget .profile-wrapper .scb-btn-cancel {
  background: linear-gradient(135deg, #64748b, #475569) !important;
  background-color: #64748b !important;
}

html body .elementor .profile-wrapper .scb-btn-cancel:hover,
html body .elementor-section .profile-wrapper .scb-btn-cancel:hover,
html body .elementor-widget .profile-wrapper .scb-btn-cancel:hover {
  background: linear-gradient(135deg, #475569, #334155) !important;
  background-color: #475569 !important;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3) !important;
}

/* ÚLTIMO RECURSO: Overrides con máxima especificidad para cualquier contexto */
.profile-wrapper .scb-btn,
.profile-wrapper button.scb-btn,
.profile-wrapper a.scb-btn,
.profile-wrapper input.scb-btn,
.profile-wrapper [data-scb-btn],
button[data-scb-btn],
a[data-scb-btn],
input[data-scb-btn],
.scb-btn[data-scb-btn],
button.scb-btn[data-scb-btn],
a.scb-btn[data-scb-btn] {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  background-color: #2d5a27 !important;
  background-image: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  color: white !important;
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  border-color: transparent !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  outline: 0 !important;
  outline-width: 0 !important;
  display: inline-block !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
  min-height: auto !important;
  width: auto !important;
  height: auto !important;
  margin-right: 10px !important;
  letter-spacing: 0.3px !important;
  vertical-align: middle !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  text-shadow: none !important;
  text-transform: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* Hover states finales */
.profile-wrapper .scb-btn:hover,
.profile-wrapper button.scb-btn:hover,
.profile-wrapper a.scb-btn:hover,
.profile-wrapper [data-scb-btn]:hover,
button[data-scb-btn]:hover,
a[data-scb-btn]:hover,
.scb-btn[data-scb-btn]:hover,
button.scb-btn[data-scb-btn]:hover,
a.scb-btn[data-scb-btn]:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  background-color: #1f4219 !important;
  background-image: linear-gradient(135deg, #1f4219, #3a6247) !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  border-color: transparent !important;
}

/* Estados finales para botones de cancelar */
.profile-wrapper .scb-btn-cancel,
.profile-wrapper [data-scb-btn].scb-btn-cancel,
.scb-btn-cancel[data-scb-btn] {
  background: linear-gradient(135deg, #64748b, #475569) !important;
  background-color: #64748b !important;
  background-image: linear-gradient(135deg, #64748b, #475569) !important;
}

.profile-wrapper .scb-btn-cancel:hover,
.profile-wrapper [data-scb-btn].scb-btn-cancel:hover,
.scb-btn-cancel[data-scb-btn]:hover {
  background: linear-gradient(135deg, #475569, #334155) !important;
  background-color: #475569 !important;
  background-image: linear-gradient(135deg, #475569, #334155) !important;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3) !important;
}

/* Override específico para botones de cancelar */
html body div.profile-wrapper[data-scb="dashboard"] .scb-btn-cancel,
html body .profile-wrapper .scb-btn-cancel[data-scb-btn] {
  background: linear-gradient(135deg, #64748b, #475569) !important;
  background-color: #64748b !important;
}

/* Hover states con máxima especificidad */
html body div.profile-wrapper[data-scb="dashboard"] .scb-btn:hover,
html body div.profile-wrapper[data-scb="dashboard"] button.scb-btn:hover,
html body div.profile-wrapper[data-scb="dashboard"] a.scb-btn:hover,
html body .profile-wrapper .scb-btn[data-scb-btn]:hover,
html body .profile-wrapper button.scb-btn[data-scb-btn]:hover,
html body .profile-wrapper a.scb-btn[data-scb-btn]:hover {
  background: linear-gradient(135deg, #1f4219, #3a6247) !important;
  background-color: #1f4219 !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4) !important;
  border-color: transparent !important;
}

html body div.profile-wrapper[data-scb="dashboard"] .scb-btn-cancel:hover,
html body .profile-wrapper .scb-btn-cancel[data-scb-btn]:hover {
  background: linear-gradient(135deg, #475569, #334155) !important;
  background-color: #475569 !important;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3) !important;
}

/* Overrides para estados disabled */
html body div.profile-wrapper[data-scb="dashboard"] .scb-btn:disabled,
html body .profile-wrapper .scb-btn[data-scb-btn]:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  background: linear-gradient(135deg, #64748b, #475569) !important;
  background-color: #64748b !important;
}

/* Overrides para botones específicos */
html body div.profile-wrapper[data-scb="dashboard"] .card .scb-btn-cashout,
html body .profile-wrapper .card .scb-btn-cashout[data-scb-btn] {
  padding: 8px 16px !important;
  font-size: 13px !important;
  margin-top: 12px !important;
  text-transform: uppercase !important;
}

/* Override para panel de verificación */
html body div.profile-wrapper[data-scb="dashboard"] .email-verification-panel .scb-btn,
html body .profile-wrapper .email-verification-panel .scb-btn[data-scb-btn] {
  width: 100% !important;
  padding: 16px !important;
  font-size: 16px !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
}

/* Backup overrides para clases originales también */
html body div.profile-wrapper[data-scb="dashboard"] .btn,
html body div.profile-wrapper[data-scb="dashboard"] button.btn,
html body div.profile-wrapper[data-scb="dashboard"] a.btn,
html body .profile-wrapper .btn[data-scb-btn] {
  background: linear-gradient(135deg, #2d5a27, #4a7c59) !important;
  background-color: #2d5a27 !important;
  color: white !important;
  border: none !important;
  border-color: transparent !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
}