/* =============================================================
   ASPIRE GRANT DASHBOARD — COMPLETE REDESIGN
   Uses brand colors from :root in style.css
   ============================================================= */

/* ===== RESET & BASE ===== */
.dashboard-body {
  --dash-bg: #f0f4f8;
  --dash-surface: #ffffff;
  --dash-border: #e8edf5;
  --dash-text: #1a202c;
  --dash-text-secondary: #4a5568;
  --dash-text-muted: #7a8aa0;
  --dash-shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --dash-shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --dash-shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --dash-shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  --dash-radius: 12px;
  --dash-radius-lg: 16px;
  --dash-radius-xl: 20px;
  --dash-ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dash-ease-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --dash-ease-out: 0.4s cubic-bezier(0, 0, 0.2, 1);

  margin: 0;
  background: var(--dash-bg);
  color: var(--dash-text);
  min-height: 100vh;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============================================================
   TOP HEADER
   ============================================================= */
.dash-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--dash-surface);
  border-bottom: 1px solid var(--dash-border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 100;
  gap: 16px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
}

.dash-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.dash-hamburger {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: background var(--dash-ease);
  position: relative;
}

.dash-hamburger:hover {
  background: var(--dash-bg);
}

.dash-hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--dash-text);
  border-radius: 2px;
  transition: all var(--dash-ease);
  transform-origin: center;
}

.dash-hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.dash-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.dash-hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.dash-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.dash-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(72,187,120,0.3);
  transition: transform var(--dash-ease);
}

.dash-logo:hover .dash-logo-icon {
  transform: scale(1.05) rotate(-5deg);
}

.dash-logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.dash-header-center {
  flex: 1;
  text-align: center;
}

.dash-header-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dash-text-secondary);
  letter-spacing: -0.01em;
}

.dash-header-right {
  flex-shrink: 0;
}

.dash-user-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dash-bg);
  padding: 6px 6px 6px 12px;
  border-radius: 40px;
  border: 1px solid var(--dash-border);
  transition: box-shadow var(--dash-ease);
}

.dash-user-badge:hover {
  box-shadow: var(--dash-shadow-sm);
}

.dash-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.dash-user-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.dash-user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dash-text);
}

.dash-user-role {
  font-size: 0.72rem;
  color: var(--dash-text-muted);
  font-weight: 500;
}

.dash-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--dash-text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--dash-ease);
  text-decoration: none;
}

.dash-btn-icon:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* =============================================================
   SLIDE MENU
   ============================================================= */
.dash-slide-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--dash-surface);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform var(--dash-ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--dash-shadow-xl);
  overflow-y: auto;
}

.dash-slide-menu.open {
  transform: translateX(0);
}

.dash-slide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--dash-border);
}

.dash-slide-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--primary-color);
}

.dash-slide-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(72,187,120,0.3);
}

.dash-slide-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--dash-text-muted);
  font-size: 1.1rem;
  transition: all var(--dash-ease);
}

.dash-slide-close:hover {
  background: var(--dash-bg);
  color: var(--dash-text);
}

.dash-slide-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--dash-border);
  background: var(--dash-bg);
}

.dash-slide-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.dash-slide-username {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dash-text);
}

.dash-slide-email {
  font-size: 0.78rem;
  color: var(--dash-text-muted);
  word-break: break-all;
}

.dash-slide-nav {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-slide-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dash-text-muted);
  padding: 16px 12px 8px;
}

.dash-slide-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--dash-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--dash-ease);
}

.dash-slide-link:hover {
  background: var(--dash-bg);
  color: var(--primary-color);
  transform: translateX(4px);
}

.dash-slide-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--dash-bg);
  color: var(--dash-text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--dash-ease);
}

.dash-slide-link.active {
  background: rgba(72,187,120,0.08);
  color: var(--accent-color);
  font-weight: 600;
}

.dash-slide-link.active .dash-slide-link-icon {
  background: rgba(72,187,120,0.12);
  color: var(--accent-color);
}

.dash-slide-link:hover .dash-slide-link-icon {
  background: rgba(72,187,120,0.12);
  color: var(--accent-color);
  transform: scale(1.05);
}

/* ===== OVERLAY ===== */
.dash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dash-ease-out);
  backdrop-filter: blur(2px);
}

.dash-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================================
   MAIN CONTENT
   ============================================================= */
.dashboard-main {
  margin-top: 68px;
  padding: 32px;
  min-height: calc(100vh - 68px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-main.public-status-main {
  max-width: 1180px;
}

@media (min-width: 1025px) {
  .dash-hamburger {
    display: none;
  }

  .dash-slide-menu {
    top: 68px;
    z-index: 90;
    width: 300px;
    max-width: 300px;
    transform: translateX(0);
    box-shadow: 8px 0 24px rgba(16,36,61,0.06);
    border-right: 1px solid var(--dash-border);
  }

  .dash-slide-header {
    display: none;
  }

  .dash-slide-close,
  .dash-overlay {
    display: none;
  }

  .dashboard-main:not(.public-status-main) {
    width: calc(100% - 300px);
    max-width: none;
    margin-left: 300px;
    margin-right: 0;
  }

  .status-menu-toggle {
    display: none;
  }

  .public-status-sidebar {
    transform: translateX(0);
  }

  .public-status-main {
    width: calc(100% - 270px);
    max-width: none;
    margin-left: 270px;
    margin-right: 0;
  }

  .status-menu-backdrop {
    display: none;
  }
}

/* =============================================================
   STAT CARDS GRID
   ============================================================= */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.dash-card {
  background: var(--dash-surface);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow-sm);
  border: 1px solid var(--dash-border);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--dash-ease);
  position: relative;
  overflow: hidden;
  animation: dashFadeUp 0.5s ease forwards;
  opacity: 0;
}

.dash-card:nth-child(1) { animation-delay: 0.05s; }
.dash-card:nth-child(2) { animation-delay: 0.1s; }
.dash-card:nth-child(3) { animation-delay: 0.15s; }
.dash-card:nth-child(4) { animation-delay: 0.2s; }

.dash-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #2f855a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dash-ease);
}

.dash-card:hover::after {
  transform: scaleX(1);
}

.dash-card:hover {
  box-shadow: var(--dash-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(72,187,120,0.15);
}

.dash-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dash-card small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dash-text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.dash-card strong {
  color: var(--primary-color);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.dash-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(72,187,120,0.12), rgba(72,187,120,0.06));
  color: var(--accent-color);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all var(--dash-ease-spring);
}

.dash-card:hover .dash-card-icon {
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(72,187,120,0.3);
}

/* =============================================================
   PANELS (cards/sections)
   ============================================================= */
.dash-panel {
  background: var(--dash-surface);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow-sm);
  border: 1px solid var(--dash-border);
  margin-bottom: 28px;
  overflow: hidden;
  transition: box-shadow var(--dash-ease);
  animation: dashFadeUp 0.5s ease 0.1s forwards;
  opacity: 0;
}

.dash-panel:hover {
  box-shadow: var(--dash-shadow-md);
}

.dash-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--dash-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(240,244,248,0.5), rgba(247,250,252,0.3));
}

.dash-panel-header h2 {
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.dash-panel-header h2 i {
  color: var(--accent-color);
  font-size: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(72,187,120,0.1);
  display: grid;
  place-items: center;
}

.dash-panel-body {
  padding: 24px;
}

/* =============================================================
   TABLES
   ============================================================= */
.dash-table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

.dash-table th {
  color: var(--dash-text-muted);
  background: rgba(240,244,248,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 16px 16px;
  text-align: left;
  border-bottom: 2px solid var(--dash-border);
  position: sticky;
  top: 0;
}

.dash-table td {
  padding: 16px 16px;
  border-bottom: 1px solid var(--dash-border);
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
  color: var(--dash-text-secondary);
  transition: background var(--dash-ease);
}

.dash-table tbody tr {
  transition: background var(--dash-ease);
  animation: dashFadeIn 0.4s ease forwards;
  opacity: 0;
}

.dash-table tbody tr:nth-child(1) { animation-delay: 0.02s; }
.dash-table tbody tr:nth-child(2) { animation-delay: 0.04s; }
.dash-table tbody tr:nth-child(3) { animation-delay: 0.06s; }
.dash-table tbody tr:nth-child(4) { animation-delay: 0.08s; }
.dash-table tbody tr:nth-child(5) { animation-delay: 0.1s; }
.dash-table tbody tr:nth-child(6) { animation-delay: 0.12s; }
.dash-table tbody tr:nth-child(7) { animation-delay: 0.14s; }
.dash-table tbody tr:nth-child(8) { animation-delay: 0.16s; }
.dash-table tbody tr:nth-child(9) { animation-delay: 0.18s; }
.dash-table tbody tr:nth-child(10) { animation-delay: 0.2s; }

.dash-table tbody tr:hover {
  background: rgba(72,187,120,0.03);
}

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

/* =============================================================
   STATUS BADGES
   ============================================================= */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--dash-border);
  color: var(--dash-text-muted);
  transition: all var(--dash-ease);
}

.status-pending,
.status-open {
  background: #fef3c7;
  color: #92400e;
}

.status-pending {
  animation: dashPulse 2.5s ease-in-out infinite;
  position: relative;
}

.status-pending::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid rgba(146,64,14,0.15);
  animation: dashRipple 2.5s ease-out infinite;
}

.status-approved,
.status-resolved,
.status-active,
.status-credit {
  background: #d1fae5;
  color: #065f46;
}

.status-rejected,
.status-closed,
.status-suspended,
.status-debit,
.status-error,
.status-fatal,
.status-uncaught-exception,
.status-admin-action {
  background: #fee2e2;
  color: #991b1b;
}

.status-needs-more-info {
  background: #dbeafe;
  color: #1e40af;
}

.status-under-review {
  background: #e0e7ff;
  color: #3730a3;
}

.status-warning,
.status-runtime,
.status-email {
  background: #fef3c7;
  color: #92400e;
}

.status-notice,
.status-deprecated,
.status-support,
.status-dashboard {
  background: #e0f2fe;
  color: #075985;
}

/* =============================================================
   STATUS TIMELINE
   ============================================================= */
.status-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.status-step {
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius);
  padding: 18px 14px;
  text-align: center;
  background: #f8fafc;
  color: var(--dash-text-muted);
  transition: all var(--dash-ease);
  position: relative;
}

.status-step:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--dash-shadow-md);
}

.status-step span {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dash-border);
  font-size: 1rem;
  transition: all var(--dash-ease-spring);
}

.status-step.current {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #f0fff4, #f6fffa);
  color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(72,187,120,0.1);
}

.status-step.current span {
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(72,187,120,0.35);
}

.status-step.complete {
  border-color: var(--accent-color);
}

.status-step.complete span {
  background: var(--accent-color);
  color: #fff;
}

/* =============================================================
   FORMS
   ============================================================= */
.dash-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.dash-form-grid .full {
  grid-column: 1 / -1;
}

.dash-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--dash-text);
  font-weight: 600;
  font-size: 0.85rem;
}

.dash-field input,
.dash-field select,
.dash-field textarea {
  width: 100%;
  border: 2px solid var(--dash-border);
  border-radius: 10px;
  padding: 12px 16px;
  font: inherit;
  background: var(--dash-surface);
  transition: all var(--dash-ease);
  font-size: 0.9rem;
  color: var(--dash-text);
}

.dash-field input:hover,
.dash-field select:hover,
.dash-field textarea:hover {
  border-color: #cbd5e0;
}

.dash-field input:focus,
.dash-field select:focus,
.dash-field textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(72,187,120,0.12);
}

.dash-field textarea {
  min-height: 110px;
  resize: vertical;
}

.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--dash-ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  line-height: 1;
}

.dash-btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(72,187,120,0.25);
}

.dash-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(72,187,120,0.35);
}

.dash-btn-primary:active {
  transform: translateY(0);
}

.dash-btn-secondary {
  background: #f1f4f9;
  color: var(--dash-text);
  border: 1px solid var(--dash-border);
}

.dash-btn-secondary:hover {
  background: var(--dash-border);
  transform: translateY(-1px);
  box-shadow: var(--dash-shadow-sm);
}

.dash-btn-danger {
  background: #ef4444;
  color: #fff;
}

.dash-btn-danger:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239,68,68,0.3);
}

.dashboard-bell {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px;
  background: #f1f4f9;
  color: var(--primary-color);
  border: 1px solid var(--dash-border);
  text-decoration: none;
  box-shadow: var(--dash-shadow-sm);
  transition: all var(--dash-ease);
  flex: 0 0 auto;
}

.dashboard-bell:hover {
  transform: translateY(-1px);
  background: #fff;
  color: var(--accent-color);
}

.dashboard-bell.has-alert {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  border-color: transparent;
  animation: dashBellPulse 1.8s ease-in-out infinite;
}

.dashboard-bell.has-alert i {
  transform-origin: 50% 0;
  animation: dashBellRing 1.1s ease-in-out infinite;
}

.dashboard-bell-dot {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 999px;
  background: #f59e0b;
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px rgba(245,158,11,0.18);
}

/* =============================================================
   ALERTS
   ============================================================= */
.dash-alert {
  padding: 14px 18px;
  border-radius: var(--dash-radius);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: dashSlideIn 0.4s ease;
}

.dash-alert i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dash-alert-success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid var(--accent-color);
}

.dash-alert-error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.dash-alert-info {
  background: #dbeafe;
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

/* =============================================================
   TICKETS
   ============================================================= */
.ticket-thread {
  display: grid;
  gap: 14px;
}

.ticket-message {
  padding: 16px 20px;
  border-radius: var(--dash-radius);
  background: #f8fafc;
  border: 1px solid var(--dash-border);
  transition: all var(--dash-ease);
  animation: dashFadeUp 0.4s ease;
}

.ticket-message:hover {
  border-color: rgba(72,187,120,0.2);
  box-shadow: var(--dash-shadow-sm);
}

.ticket-message.admin {
  background: linear-gradient(135deg, #f0fff4, #f6fffa);
  border-color: rgba(72,187,120,0.12);
}

.ticket-message strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.ticket-message p {
  line-height: 1.7;
  color: var(--dash-text-secondary);
  font-size: 0.9rem;
}

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

/* =============================================================
   MISC COMPONENTS
   ============================================================= */
.tracking-code-box {
  margin: 18px auto;
  padding: 18px 24px;
  border: 2px dashed var(--accent-color);
  border-radius: var(--dash-radius);
  background: linear-gradient(135deg, #f0fff4, #f6fffa);
  color: var(--primary-color);
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  border: 2px solid var(--dash-border);
  border-radius: 10px;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.88rem;
  transition: all var(--dash-ease);
  background: var(--dash-surface);
  color: var(--dash-text);
}

.filter-bar input:focus,
.filter-bar select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(72,187,120,0.12);
}

.mini-chart {
  display: grid;
  gap: 16px;
}

.chart-row {
  display: grid;
  grid-template-columns: 160px 1fr 50px;
  gap: 14px;
  align-items: center;
}

.chart-row > div:not(:first-child):not(:last-child) {
  height: 10px;
  background: var(--dash-border);
  border-radius: 999px;
  overflow: hidden;
}

.chart-row b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #2f855a);
  border-radius: inherit;
  transition: width 1s ease;
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes dashFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dashFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dashSlideIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes dashPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

@keyframes dashRipple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes dashSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dashShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}

@keyframes dashBellRing {
  0%, 100% { transform: rotate(0); }
  15% { transform: rotate(14deg); }
  30% { transform: rotate(-12deg); }
  45% { transform: rotate(9deg); }
  60% { transform: rotate(-6deg); }
  75% { transform: rotate(3deg); }
}

@keyframes dashBellPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(72,187,120,0.22); }
  50% { box-shadow: 0 8px 28px rgba(72,187,120,0.42); }
}

.dash-animate-float {
  animation: dashFloat 3s ease-in-out infinite;
}

.dash-animate-spin {
  animation: dashSpin 2s linear infinite;
}

.dash-animate-shake {
  animation: dashShake 0.4s ease;
}

.dash-animate-fade-up {
  animation: dashFadeUp 0.5s ease forwards;
}

/* =============================================================
   DASHBOARD TOPBAR (backward compat for application_status.php)
   ============================================================= */
.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--dash-surface);
  border-radius: var(--dash-radius-lg);
  box-shadow: var(--dash-shadow-sm);
  border: 1px solid var(--dash-border);
  animation: dashFadeUp 0.5s ease;
}

.dashboard-topbar p {
  color: var(--dash-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.dashboard-topbar h1 {
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 640px) {
  .dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .dashboard-topbar h1 {
    font-size: 1.15rem;
  }
}

/* =============================================================
   AUTH PAGES
   ============================================================= */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background: linear-gradient(135deg, var(--dash-bg) 0%, #e2e8f0 100%);
}

.auth-card {
  width: min(760px, 100%);
  animation: dashFadeUp 0.6s ease;
}

.public-status-main {
    max-width: 1180px;
    margin: 0 auto;
}

.public-status-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 270px;
    background: #10243d;
    color: #fff;
    padding: 24px;
    z-index: 60;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-lg);
}

.public-status-sidebar nav {
    display: grid;
    gap: 8px;
}

.public-status-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: rgba(255,255,255,0.84);
}

.public-status-sidebar nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.public-status-sidebar nav a.active {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 8px 18px rgba(72,187,120,0.22);
}

.status-menu-toggle {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 70;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.status-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16,36,61,0.45);
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.status-menu-open .public-status-sidebar {
    transform: translateX(0);
}

.status-menu-open .status-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* =============================================================
   RESPONSIVE — TABLET
   ============================================================= */
@media (max-width: 1024px) {
  .dash-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-header-center {
    display: none;
  }

  .dash-user-meta {
    display: none;
  }
}

/* =============================================================
   RESPONSIVE — MOBILE
   ============================================================= */
@media (max-width: 640px) {
  .dash-header {
    padding: 0 16px;
    height: 60px;
  }

  .dashboard-main {
    margin-top: 60px;
    padding: 16px;
  }

  .dash-header-title {
    display: none;
  }

  .dash-header-center {
    display: none;
  }

  .dash-logo-text {
    display: none;
  }

  .dash-user-badge {
    padding: 4px 4px 4px 4px;
    gap: 0;
  }

  .dash-user-meta {
    display: none;
  }

  .dash-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .dash-form-grid {
    grid-template-columns: 1fr;
  }

  .dash-panel-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .dash-panel-body {
    padding: 18px;
  }

  .dash-card {
    padding: 18px;
  }

  .dash-card strong {
    font-size: 1.5rem;
  }

  .dash-slide-menu {
    width: 85vw;
  }

  .status-timeline {
    grid-template-columns: 1fr;
  }

  .chart-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) {
  .status-menu-toggle {
    display: none;
  }

  .public-status-sidebar {
    transform: translateX(0);
  }

  .public-status-main {
    width: calc(100% - 270px);
    max-width: none;
    margin-left: 270px;
    margin-right: 0;
  }

  .status-menu-backdrop {
    display: none;
  }
}

/* =============================================================
   WALLET HERO CARD
   ============================================================= */
.wallet-hero-card {
  position: relative;
  background: linear-gradient(135deg, #0f2544 0%, #1a3a6b 50%, #0f2544 100%);
  border-radius: var(--dash-radius-xl);
  padding: 36px 40px;
  margin-bottom: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  animation: dashFadeUp 0.5s ease forwards;
  opacity: 0;
  box-shadow: 0 20px 60px rgba(15,37,68,0.35), 0 8px 24px rgba(15,37,68,0.2);
}

.wallet-hero-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.wh-c1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(72,187,120,0.18) 0%, transparent 70%);
  top: -80px;
  right: 80px;
}

.wh-c2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  bottom: -60px;
  right: -40px;
}

.wh-c3 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(72,187,120,0.1) 0%, transparent 70%);
  top: 20px;
  left: 50%;
}

.wallet-hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wallet-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wallet-hero-amount {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 4px 0 2px;
}

.wallet-hero-note {
  margin-bottom: 8px;
}

.wallet-status-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
}

.wallet-pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.wallet-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.wallet-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dash-ease);
  font-family: inherit;
}

.wallet-action-btn:hover {
  transform: translateY(-2px);
}

.wallet-action-deposit {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 6px 20px rgba(72,187,120,0.35);
}

.wallet-action-deposit:hover {
  background: #38a169;
  box-shadow: 0 10px 28px rgba(72,187,120,0.45);
}

.wallet-action-withdraw {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.wallet-action-withdraw:hover {
  background: rgba(255,255,255,0.2);
}

.wallet-action-history {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}

.wallet-action-history:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.wallet-hero-icon-wrap {
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 7vw, 5rem);
  color: rgba(255,255,255,0.08);
  flex-shrink: 0;
  animation: dashFloat 4s ease-in-out infinite;
  line-height: 1;
}

/* =============================================================
   WALLET PANEL & TABS
   ============================================================= */
.wallet-panel {
  animation: dashFadeUp 0.5s ease 0.15s forwards;
}

.wallet-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--dash-border);
  padding: 0 4px;
  background: linear-gradient(135deg, rgba(240,244,248,0.5), rgba(247,250,252,0.3));
  overflow-x: auto;
  scrollbar-width: none;
}

.wallet-tab-nav::-webkit-scrollbar {
  display: none;
}

.wallet-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 22px;
  border: none;
  background: transparent;
  color: var(--dash-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--dash-ease);
  white-space: nowrap;
  font-family: inherit;
}

.wallet-tab-btn:hover {
  color: var(--primary-color);
  background: rgba(72,187,120,0.04);
}

.wallet-tab-btn.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: rgba(72,187,120,0.05);
}

.wallet-tab-panel {
  display: none;
}

.wallet-tab-panel.active {
  display: block;
  animation: dashFadeIn 0.3s ease;
}

/* =============================================================
   WALLET FORM LAYOUT (two-column: methods + form)
   ============================================================= */
.wallet-form-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 340px;
}

.wallet-methods-list {
  border-right: 1px solid var(--dash-border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(240,244,248,0.3);
}

.wallet-methods-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dash-text-muted);
  margin: 0 0 10px 6px;
}

.wallet-method-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dash-ease);
  background: var(--dash-surface);
}

.wallet-method-card input[type="radio"] {
  display: none;
}

.wallet-method-card:hover {
  border-color: rgba(72,187,120,0.2);
  background: #fff;
  box-shadow: var(--dash-shadow-sm);
}

.wallet-method-card.selected {
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(72,187,120,0.08);
}

.wallet-method-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(72,187,120,0.1);
  color: var(--accent-color);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--dash-ease);
}

.wallet-method-card.selected .wallet-method-icon {
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  color: #fff;
}

.wallet-method-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.wallet-method-info strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dash-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wallet-method-info small {
  font-size: 0.73rem;
  color: var(--dash-text-muted);
}

.wallet-method-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--dash-border);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  color: transparent;
  flex-shrink: 0;
  transition: all var(--dash-ease);
}

.wallet-method-card.selected .wallet-method-check {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

/* =============================================================
   WALLET FORM AREA (right side)
   ============================================================= */
.wallet-form-area {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wallet-method-detail {
  display: none;
  background: linear-gradient(135deg, #f0fff4, #f8fffe);
  border: 1px solid rgba(72,187,120,0.15);
  border-radius: var(--dash-radius);
  padding: 18px 20px;
  gap: 14px;
  flex-direction: column;
}

.wallet-method-detail.active {
  display: flex;
  animation: dashFadeIn 0.25s ease;
}

.wallet-method-detail-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wallet-method-detail-header > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wallet-method-detail-header strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}

.wallet-method-detail-header span {
  font-size: 0.78rem;
  color: var(--dash-text-muted);
}

.wallet-method-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(72,187,120,0.3);
}

.wallet-method-detail-icon.wdr {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 6px 18px rgba(59,130,246,0.3);
}

.wallet-detail-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgba(72,187,120,0.12);
}

.wallet-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dash-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.wallet-detail-value {
  font-size: 0.88rem;
  color: var(--dash-text);
  font-weight: 500;
  word-break: break-all;
}

/* =============================================================
   WALLET SUBMIT FORM
   ============================================================= */
.wallet-submit-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--dash-border);
  padding-top: 16px;
  margin-top: 4px;
}

.wallet-balance-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #1e40af;
  font-weight: 500;
}

.wallet-balance-hint strong {
  font-weight: 700;
}

.wallet-amount-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wallet-amount-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dash-text);
}

.wallet-amount-input {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--dash-border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--dash-ease);
  background: var(--dash-surface);
}

.wallet-amount-input:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(72,187,120,0.12);
}

.wallet-amount-prefix {
  padding: 12px 14px;
  background: var(--dash-bg);
  border-right: 2px solid var(--dash-border);
  font-weight: 700;
  color: var(--dash-text-muted);
  font-size: 1rem;
  display: grid;
  place-items: center;
}

.wallet-amount-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dash-text);
  background: transparent;
}

.wallet-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wallet-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dash-text);
}

.wallet-field textarea {
  border: 2px solid var(--dash-border);
  border-radius: 10px;
  padding: 12px 16px;
  font: inherit;
  font-size: 0.88rem;
  color: var(--dash-text);
  background: var(--dash-surface);
  resize: vertical;
  transition: all var(--dash-ease);
  min-height: 90px;
}

.wallet-field textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(72,187,120,0.12);
}

.wallet-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dash-ease);
  font-family: inherit;
  align-self: flex-start;
}

.wallet-submit-deposit {
  background: linear-gradient(135deg, var(--accent-color), #2f855a);
  color: #fff;
  box-shadow: 0 6px 20px rgba(72,187,120,0.3);
}

.wallet-submit-deposit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(72,187,120,0.42);
}

.wallet-submit-withdraw {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  box-shadow: 0 6px 20px rgba(59,130,246,0.3);
}

.wallet-submit-withdraw:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(59,130,246,0.42);
}

/* =============================================================
   TABLE UTILITIES
   ============================================================= */
.tx-credit {
  color: #065f46;
  font-weight: 700;
}

.tx-debit {
  color: #991b1b;
  font-weight: 700;
}

.dash-empty-row {
  text-align: center;
  color: var(--dash-text-muted);
  font-style: italic;
  padding: 32px 16px !important;
}

/* =============================================================
   WALLET RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .wallet-form-layout {
    grid-template-columns: 1fr;
  }

  .wallet-methods-list {
    border-right: none;
    border-bottom: 1px solid var(--dash-border);
    padding: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: auto;
    gap: 8px;
  }

  .wallet-methods-title {
    width: 100%;
    margin-bottom: 4px;
  }

  .wallet-method-card {
    flex: 0 0 auto;
    padding: 10px 14px;
    min-width: 140px;
  }

  .wallet-method-info small {
    display: none;
  }

  .wallet-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .wallet-hero-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .wallet-hero-icon-wrap {
    display: none;
  }

  .wallet-hero-amount {
    font-size: 2rem;
  }

  .wallet-hero-actions {
    width: 100%;
  }

  .wallet-action-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .wallet-tab-btn {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .wallet-form-area {
    padding: 16px;
  }

  .wallet-submit-btn {
    width: 100%;
  }
}
