* {
  box-sizing: border-box;
}

:root {
  --main-cl: #ffffffe7;
  --main-bg: #0d1936e7;
  --card-bg: #0d1936;
  --primary: #1ca05a;
  --secondary: #0d1936;
  --text: #ffffff;
  --muted: #8a8787;
  --shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  --radius: 22px;
}

body {
  background: #0d1936;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-frame {
  /* margin-top: 80px; */
  background: var(--bg-main);
  border-radius: 32px;
  box-shadow: var(--shadow);
  width: 370px;
  max-width: 98vw;
  padding: 28px 0 28px 0;
  position: relative;
  overflow: hidden;
  transition: width 0.3s, border-radius 0.3s;
}

.profile-content {
  padding: 10px 24px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  border: 3px solid var(--bg-card);
}

.profile-info {
  flex: 1;
}

.profile-name {
  color: var(--main-cl);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.profile-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.menu-btn {
  background: var(--bg-card);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.3rem;
  cursor: pointer;
}

.main-title {
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.chart-card {
  background: #0e2049ad;
  border-radius: var(--radius);
  padding: 18px 12px 12px 12px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.chart-cardon {
  background: #0e2049ad;
  height: auto;
  border-radius: var(--radius);
  padding: 18px 12px 12px 12px;
  margin-bottom: 18px;
  padding-top: 50px;
  box-shadow: var(--shadow);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  height: 90px;
  gap: 8px;
  margin-bottom: 10px;
  justify-content: center;
}

.bar {
  width: 10px;
  border-radius: 6px;
  margin: 0 1px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bar-pink {
  background: var(--accent-pink);
}

.bar-blue {
  background: var(--accent-blue);
}

.bar-purple {
  background: var(--accent-purple);
}

/* Chart legend */
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Time buttons */
.time-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.time-btn {
  background: var(--bg-card);
  color: var(--text-muted);
  border: none;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.time-btn.active,
.time-btn:hover {
  background: var(--accent-pink);
  color: #fff;
}

/* Action buttons */
.action-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.action-btn {
  flex: 1;
  background: var(--accent-pink);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.action-btn.secondary {
  background: var(--bg-card);
  color: #fff;
  border: 2px solid var(--accent-blue);
}

.action-btn .arrow {
  font-size: 1.2rem;
}

/* Transactions */
.transactions-title {
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transaction-card {
  background: linear-gradient(150deg, var(--primary), var(--secondary), var(--secondary));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.transaction-cardd {
  background: linear-gradient(150deg, var(--secondary), var(--secondary), var(--primary));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.transaction-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transaction-icon {
  font-size: 3.3rem;
  color: var(--accent-blue);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;

}

.transaction-ic {
  position: relative;
  right: 0;
  margin-right: 5px;
  margin-left: -13px;
  font-size: 3.3rem;
  color: var(--accent-blue);
  height: 50px;
  width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: #fff;

}
.transaction-icont {
  position: relative;
  right: 0;
  margin-right: 5px;
  margin-left: -13px;
  font-size: 2.3rem;
  color: var(--accent-blue);
  height: 50px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: #fff;

}

.transaction-details {
  display: flex;
  flex-direction: column;
}

/* .transaction-title {
  color: var(--bg-main);
  font-weight: 500;
  font-size: 1.08rem;
} */

.transaction-date {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.transaction-amount {
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

.transaction-amount.negative {
  color: #f51a1a;
}

.transaction-amount.positive {
  color: #036803;
}

/* Responsive */
@media (min-width: 600px) {
  .profile-frame {
    width: 500px;
    border-radius: 28px;
  }

  .profile-content {
    padding: 0 40px;
  }
}

@media (min-width: 900px) {
  .profile-frame {
    width: 700px;
    border-radius: 24px;
    padding: 40px 0;
  }

  .profile-content {
    padding: 0 60px;
  }
}

@media (max-width: 400px) {
  .profile-frame {
    padding: 8px 0;
    border-radius: 18px;
    width: 100vw;
  }

  .profile-content {
    padding: 0 8px;
  }
}

/* dashboard css */

.phone-frame {
  background: #132141;
  border-radius: 40px;
  box-shadow: 0 8px 40px rgba(44, 62, 80, 0.15);
  width: 90%;
  /* height: 100vh; */
  max-width: 98vw;
  padding: 24px 0 24px 0;
  position: relative;
  overflow: hidden;
  transition: width 0.3s, border-radius 0.3s;
}

.notch {
  width: 60px;
  height: 10px;
  background: transparent;
  border-radius: 8px;
  margin: 0 auto 18px auto;
}

.dashboard-content {
  padding: 0 24px;
}

.profile-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px 12px 20px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.task-lc {
  margin: auto;
  width: 100%;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 20px;
}

.profile-image img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.profile-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
}

.profile-stat {
  text-align: center;
  flex: 1;
}

.profile-stat-title {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.profile-stat-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--main-cl);
}

.profile-stat+.profile-stat {
  border-left: 1px solid #f0f0f0;
}

/* slide css */

.card-slider-container {
  position: relative;
  width: 100%;
  /* max-width: 350px; */
  margin: 0 auto;
  overflow: hidden;
}

.card-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
}

.card-slide {
  min-width: 100%;
  opacity: 0.5;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.slide-indicators span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.slide-indicators .active {
  background: #333;
}

.card-section {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 20px;
  margin-bottom: 22px;
  color: #fff;
  position: relative;
  min-height: 110px;
  display: block;
  flex-direction: column;
  justify-content: space-between;
}

.card-chip {
  width: 38px;
  height: 28px;
  background: #fff;
  color: #0d1936;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 8px;
  margin-bottom: 18px;
}

.card-number {
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.card-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.85;
}

.card-labels span {
  font-weight: 500;
}

.quick-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* space between cards */
  flex-wrap: wrap;
  margin-top: 20px;
}
.quick-acti {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* space between cards */
  flex-wrap: wrap;
  margin-top: 20px;
}

.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(150deg, var(--primary), var(--secondary), var(--secondary));
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 18px 24px;
  min-width: 120px;
  max-width: 150px;
  text-align: center;
}
.action-car {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(150deg, var(--secondary), var(--secondary), var(--primary));
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 18px 24px;
  min-width: 90px;
  max-width: 90px;
  text-align: center;
}

.action-card:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
}

.action-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.action-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text);
}
.action-tit {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 2px;
  color: var(--text);
}

.action-desc {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Tablet styles */
@media (min-width: 600px) {
  .phone-frame {
    width: 80%;
    border-radius: 32px;
  }

  .dashboard-content {
    padding: 0 40px;
  }

  .profile-card,
  .card-section,
  .action-card {
    border-radius: 18px;
  }

  .action-card {
    min-height: 110px;
  }
}

/* Laptop/Desktop styles */
@media (min-width: 900px) {
  .phone-frame {
    width: 700px;
    border-radius: 24px;
    padding: 40px 0;
  }

  .dashboard-content {
    padding: 0 60px;
  }

  .quick-actions {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .profile-card,
  .card-section,
  .action-card {
    border-radius: 16px;
  }

  .profile-card,
  .card-section {
    margin-bottom: 32px;
  }

  .action-card {
    min-height: 120px;
  }
}

/* Mobile styles */
@media (max-width: 400px) {
  .phone-frame {
    padding: 8px 0;
    border-radius: 20px;
    width: 100vw;
  }

  .dashboard-content {
    padding: 0 8px;
  }

  .profile-card,
  .card-section,
  .action-card {
    border-radius: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

.wallet-app {
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(80, 120, 255, 0.10);
  overflow: hidden;
  padding-bottom: 24px;
}

.wallet-header {
  background: linear-gradient(135deg, #5d7cff 0%, #7f9fff 100%);
  padding: 24px 24px 0 24px;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.user-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.quick-actions {
  display: flex;
  gap: 8px;
}

.quick-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.quick-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.card-section {
  margin: 24px 0 0 0;
  display: flex;
  justify-content: center;
}

.card {
  background: linear-gradient(135deg, #bfcfff 0%, #e5eaff 100%);
  border-radius: 18px;
  padding: 18px 28px;
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(80, 120, 255, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.card-chip {
  width: 36px;
  height: 24px;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 18px;
}

.card-type {
  font-size: 1rem;
  color: #7f9fff;
  font-weight: 600;
  letter-spacing: 2px;
}

.transactions-section {
  margin: 32px 0 0 0;
  padding: 0 24px;
}

.transactions-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.view-all-btn {
  background: none;
  border: none;
  color: #5d7cff;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* .transact-card {
  background: #f7f9ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 16px 14px;
  box-shadow: 0 2px 8px rgba(80, 120, 255, 0.04);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  gap: 14px;
}
.transact-card:hover {
  background: #e5eaff;
  box-shadow: 0 4px 16px rgba(80, 120, 255, 0.10);
} */

.icon-exchange {
  background: #e5eaff url('https://img.icons8.com/ios-filled/50/5d7cff/currency-exchange.png') no-repeat center/60%;
}

.icon-cashin {
  background: #e5eaff url('https://img.icons8.com/ios-filled/50/5d7cff/receive-cash.png') no-repeat center/60%;
}

.icon-cashback {
  background: #e5eaff url('https://img.icons8.com/ios-filled/50/5d7cff/cashback.png') no-repeat center/60%;
}

.icon-transfer {
  background: #e5eaff url('https://img.icons8.com/ios-filled/50/5d7cff/money-transfer.png') no-repeat center/60%;
}

.transaction-details {
  flex: 1;
}

.transaction-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.transaction-date,
.transaction-id {
  font-size: 0.92rem;
  color: #7f8fa6;
}

.transaction-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 90px;
}

.amount {
  font-size: 1.08rem;
  font-weight: 600;
  color: #da1919;
}

.status {
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 2px 8px;
  margin-top: 4px;
  display: inline-block;
}

.status.confirmed {
  background: #046451;
  color: #e6fbe8;
}

.status.pending {
  background: #fff6e6;
  color: #f39c12;
}

.status.canceled {
  background: #b30303;
  color: #fff;
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 62, 80, 0.18);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  min-width: 320px;
  box-shadow: 0 8px 32px rgba(80, 120, 255, 0.18);
  position: relative;
  animation: popIn 0.2s;
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.5rem;
  color: #7f8fa6;
  cursor: pointer;
}

@media (max-width: 500px) {
  .wallet-app {
    max-width: 100vw;
    border-radius: 0;
  }

  .wallet-header {
    border-radius: 0;
  }

  .modal-content {
    min-width: 90vw;
  }
}

.withdraw-container {
  max-width: 375px;
  margin: 40px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(80, 120, 255, 0.10);
  overflow: hidden;
  padding-bottom: 24px;
}

.withdraw-header {
  background: #0d1936;
  color: #fff;
  padding: 18px 24px 10px 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0 0;
  padding: 0 24px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eaf1ff;
}

.user-details {
  flex: 1;
}

.user-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

.user-phone {
  font-size: 0.95rem;
  color: #7f8fa6;
}

.user-balance {
  color: #ffffff;
  background: #0d1936;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: right;
}

.withdraw-form {
  padding: 24px;
}

.form-label {
  font-size: 0.98rem;
  color: #222;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-row {
  display: flex;
  width: 100%;
  gap: 12px;
  margin-bottom: 18px;
}

.form-select,
.form-input {
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  background: #f7f9ff;
  outline: none;
  transition: border 0.2s;
}
.form-i {
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 2rem;
  color: #fff;
  background: #041b61;
  outline: none;
  transition: border 0.2s;
}
.form-j {
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 2rem;
  color: #fff;
  background: #041b61;
  outline: none;
  transition: border 0.2s;
}
.form-t {
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 2rem;
  color: #fff;
  /* width: 100%; */
  background: #041b61;
  outline: none;
  transition: border 0.2s;
}

.sidebar-avatar {
 
  border: 2px solid #eaf1ff;
}
.form-th {
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  padding: 5px 9px;
  font-size: 1rem;
  color: #fff;
  /* width: 100%; */
  background: #041b61;
  outline: none;
  transition: border 0.2s;
}
.form-selecting {
  border: 1px solid #dbe6ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  overflow: hidden;
  width: 90px;
  background: #f7f9ff;
  outline: none;
  transition: border 0.2s;
}

.form-select:focus,
.form-input:focus {
  border-color: #1a4bc7;
}

.card-box {
  background: linear-gradient(135deg, #bfcfff 0%, #e5eaff 100%);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(80, 120, 255, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* .card-number {
      font-size: 1.1rem;
      color: #1a4bc7;
      letter-spacing: 2px;
      margin-bottom: 8px;
    } */
.card-details {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: #222;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  
}

/* .btn {
      background: #0d1936;
      box-shadow: ;
      color: #fff;
      border: 1px solid #ffffff;
      border-radius: 10px;
      padding: 12px 0;
      font-size: 1.08rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    } */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  border: 1px solid #ffffff;
  border-radius: 10px;
  border-radius: 6px;
  background: #0d1936;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 120px;
}

.btn:hover {
  background-color: #0d1e30;
}

.btn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

.spinner {
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.btn-spinner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn:hover {
  background: #1740a6;
}

.btn-cancel {
  background: #f7f9ff;
  color: #1a4bc7;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cancel:hover {
  background: #eaf1ff;
}

/* Success Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 62, 80, 0.18);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  min-width: 320px;
  box-shadow: 0 8px 32px rgba(80, 120, 255, 0.18);
  position: relative;
  text-align: center;
  animation: popIn 0.2s;
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px auto;
  background: #eaf1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-check svg {
  width: 38px;
  height: 38px;
  color: #1abc9c;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.modal-desc {
  font-size: 0.98rem;
  color: #7f8fa6;
  margin-bottom: 18px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 500px) {
  .withdraw-container {
    max-width: 100vw;
    border-radius: 0;
  }

  .withdraw-header {
    border-radius: 0;
  }

  .modal-content {
    min-width: 90vw;
  }
}

.copy-link-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 5px solid #0d1936;
  border-radius: 2px;
  /* padding: px; */
  width: 100%;
  overflow: hidden;
  margin: 20px auto;
  background-color: #f9f9f9;
}

#linkText {
  flex-grow: 1;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px;
}

.copy-btn {
  margin-left: 10px;
  padding: 10px 16px;
  background-color: #0d1936;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-btn:hover {
  background-color: #45a049;
}

/* 
.toast-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #b6e6b6;
  color: #1a3c1a;
  padding: 16px;
  font-weight: bold;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast-success button {
  background: none;
  border: none;
  color: #1a3c1a;
  font-size: 18px;
  cursor: pointer;
}

.toast-success span {
  font-weight: 500;
  font-size: 20px;
}

.toast-error span {
  font-size: 20px;
  font-weight: 500;
}

.toast-error {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f8d7da;
  color: #721c24;
  padding: 16px;
  font-weight: bold;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toast-error span {
  left: 0;
  
  text-align: center;
  
  font-weight: 600;
  font-size: 20px;
  color: #310207b9; 
}
.toast-error button {
  font-size: 18px;
  background: none;
  border: none;
  color: #721c24;
  cursor: pointer;
  position: absolute;
  right: 10px;
} */
/* toast css */
/* Toast base styling */
/* Toast container (fixed to bottom-right corner) */
/* Underline effect */
.toast-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    /* Adjust based on text size */
    width: 0;
    height: 4px;
    background-color: #fff;
    animation: underline 9.5s linear forwards;
}

/* Underline animation */
@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999; /* Increased to ensure it's above modals and overlays */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 100px;
    padding: 7px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 9.5s forwards;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #fff;
}

/* Success toast */
.toast-success {
    background-color: #4caf50;
    /* Green */
    border-left: 5px solid #388e3c;
}

/* Error toast */
.toast-error {
    background-color: #f44336;
    /* Red */
    border-left: 5px solid #d32f2f;
}

/* Toast content */
.toast-content {
    flex-grow: 1;
    margin-left: 10px;
}

/* Toast icon */
.toast-icon {
    font-size: 18px;
    font-weight: bold;
}

/* Close button */
.toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Slide-in animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade-out animation */
@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}


/* plans css */
.level {
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
}

.row {
  display: flex;
  justify-content: center;
}

.column {
  width: 100%;
  max-width: 700px;
}

.upgrade-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}

.cardon {
  background: #0d1936;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.plan-name {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

.plan-price {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.benefits {
  list-style: none;
  padding: 0;
  color: #dbe6ff;
  margin-bottom: 20px;
}

.benefits li {
  display: flex;
  justify-content: space-between;
  color: #1740a6;
  margin-bottom: 10px;
}

.benefits strong {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  margin-bottom: 10px;
}

.small-text {
  font-size: 10px;
  color: #888;
}

.button {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  width: 100%;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}

.button.green {
  background: linear-gradient(150deg, var(--primary), var(--secondary), var(--primary));
  box-shadow: 0px 4px 12px rgba(255, 246, 246, 0.1);
}

.button.blue {
  background: linear-gradient(150deg, var(--primary), var(--secondary), var(--primary));
  box-shadow: 0px 4px 12px rgba(255, 246, 246, 0.1);
  
}
.button.gold {
  background: linear-gradient(150deg, var(--primary), var(--secondary), var(--primary));
  box-shadow: 0px 4px 12px rgba(255, 246, 246, 0.1);
}

.green {
  color: #ffffff;
}

.blue {
  color: #17a2b8;
}

.muted {
  color: #999;
}

.gold {
  color: #ffd700;
}

/* level up  */
.level-wrapper {
    padding: 40px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.column-full {
    width: 100%;
}

.column-half {
    width: 48%;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading {
    font-size: 24px;
    font-weight: bold;
}

.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-step {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
}

.timeline-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.small-text {
    font-size: 14px;
    margin: 5px 0;
}

.tiny-text {
    font-size: 12px;
    color: #888;
}

.progress-bar-container {
    background-color: #5e5c5c;
    border-radius: 5px;
    height: 6px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar {
    height: 6px;
    background-color: #ffffff;
    transition: width 0.3s ease-in-out;
}
.progress-bar3 {
    height: 6px;
    background-color: gold;
    transition: width 0.3s ease-in-out;
}
.progress-bar2 {
    height: 6px;
    background-color: #17a2b8;
    transition: width 0.3s ease-in-out;
}

.badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    background-color: #999;
    color: white;
    margin-top: 10px;
}

.history-box {
    display: flex;
    flex-direction: column;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.history-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.history-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #555;
}

/* Icons (you can replace with FontAwesome or SVG if needed) */
.icon {
    width: 16px;
    height: 16px;
}

.icon.star::before { content: "★"; color: gold; }
.icon.user::before { content: "👤"; color: #007bff; }
.icon.currency::before { content: "₦"; color: #28a745; }
.icon.lock::before { content: "🔒"; color: white; }
.icon.file::before { content: "📄"; color: #ff9900; }

.locked-badge {
    background-color: #888;
}

.upgrade-card {
    background-color: #fff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    color: #333;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #0d1936;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.dropdown-toggle:hover {
    background-color: #0d1936;
}

.arrow {
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.arrow.rotate {
    transform: rotate(180deg);
}

.upgrade-info {
    margin-top: 20px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.visible {
    max-height: 1000px;
    opacity: 1;
    pointer-events: all;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-intro {
    font-size: 15px;
    margin-bottom: 15px;
}

.card-section {
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #0d1936;
}

.card-subtitle {
    font-size: 17px;
    font-weight: bold;
    color: #0d1936;
    margin-bottom: 5px;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
}

.info-flow {
    border-left-color: #27ae60;
}

.flow-title {
    color: #27ae60;
    font-size: 16px;
    font-weight: bold;
}

.flow-path {
    font-weight: bold;
    margin-top: 5px;
}

.card-footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.footer-text {
    font-size: 13px;
    color: #777;
}

.instagram{ width:100px; height:100px;
  color: #f09433; 
color: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
color: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
color: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }

  .tier_badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    background-color: #999;
    color: white;
    margin-top: 10px;
  }
  .tier_badgeing {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    background-color: #640f0f;
    color: white;
    margin-top: 10px;
  }
  .unlocked_badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    background-color: #02220d;
    color: white;
    margin-top: 10px;
  }