/* ═══════════════════════════════════
   website/user/_style.css  —  Premium Token-Driven Redesign
   ═══════════════════════════════════ */
.auth-page {
  background: #ffffff; /* Page background white */
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  font-family: 'TT Commons', 'Inter', sans-serif; /* font.family.stack */
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 112, 119, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.auth-page::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 169, 166, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.auth-wrap {
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.auth-card {
  background: #ffffff; /* Card background white */
  border: 2px solid #0f7077; /* color.border.strong */
  border-radius: 18px; /* radius.xl */
  overflow: hidden;
  box-shadow: rgba(15, 112, 119, 0.08) 0px 8px 24px 0px; /* shadow.1 */
  transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 300ms cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.auth-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(15, 112, 119, 0.15) 0px 12px 30px 0px;
  border-color: #00a9a6;
}
.auth-card__head {
  background: linear-gradient(135deg, #0f7077 0%, #00a9a6 100%);
  padding: 32px 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #bb9a62; /* color.surface.strong division line */
}
.auth-card__head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.auth-card__head .ico {
  font-size: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px; /* radius.md */
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.auth-card__head h1 {
  color: #ffffff; /* color.text.primary */
  font-size: 22px; /* font.size.4xl */
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.auth-card__head p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px; /* font.size.lg */
  margin: 6px 0 0;
  font-weight: 500;
}
.auth-card__body {
  padding: 32px;
  background: #ffffff; /* Card body background white */
}

.auth-divider {
  text-align: center;
  color: #64748b;
  font-size: 11px; /* font.size.xs */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0;
  position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #e2e8f0;
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.f-g {
  margin-bottom: 18px;
}
.f-g label {
  display: block;
  font-size: 11.5px; /* font.size.sm */
  font-weight: 800;
  color: #212529; /* color.text.secondary (dark gray for readable label) */
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.f-g.req label::after {
  content: ' *';
  color: #bb9a62; /* color.surface.strong */
}
.f-g input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #0f7077; /* color.border.strong */
  border-radius: 8px; /* radius.sm */
  font-size: 13px; /* font.size.lg */
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  background: #ffffff; /* input bg white */
  color: #212529; /* input text dark */
  transition: all 300ms ease;
}
.f-g input::placeholder {
  color: #94a3b8;
}
.f-g input:focus {
  border-color: #bb9a62; /* color.surface.strong */
  box-shadow: 0 0 0 3px rgba(187, 154, 98, 0.15);
  background: #ffffff;
}
.f-g.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-auth {
  width: 100%;
  padding: 12px;
  border-radius: 8px; /* radius.sm */
  background: #bb9a62; /* color.surface.strong */
  color: #ffffff; /* color.text.primary */
  font-size: 13.5px; /* font.size.xl */
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px 0px; /* shadow.3 */
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-auth:hover {
  transform: translateY(-2px);
  background: #cba86e;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 20px 0px; /* shadow.4 */
}
.btn-auth:active {
  transform: translateY(0);
}
.btn-auth.secondary {
  background: transparent;
  color: #00a9a6; /* color.text.tertiary */
  border: 1.5px solid #0f7077; /* color.border.strong */
  box-shadow: none;
}
.btn-auth.secondary:hover {
  background: rgba(0, 169, 166, 0.08);
  border-color: #00a9a6;
  transform: translateY(-2px);
}

.auth-links {
  text-align: center;
  margin-top: 20px;
  font-size: 12px; /* font.size.md */
  color: #64748b;
  font-weight: 600;
}
.auth-links a {
  color: #00a9a6; /* color.text.tertiary */
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms;
}
.auth-links a:hover {
  color: #bb9a62;
  text-decoration: underline;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px; /* radius.sm */
  font-size: 12px; /* font.size.md */
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  line-height: 1.5;
  border: 1.5px solid transparent;
}
.alert.error { background: #fef2f2; border-color: #fee2e2; color: #b91c1c; }
.alert.success { background: #f0fdf4; border-color: #d1fae5; color: #15803d; }
.alert.info { background: #eff6ff; border-color: #dbeafe; color: #1d4ed8; }

/* Dual column layout for auth card */
@media (min-width: 768px) {
  .auth-wrap {
    max-width: 1200px !important;
  }
  .auth-card {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    min-height: 520px;
  }
}

.auth-card__promo {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?q=80&w=800');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #ffffff;
  box-sizing: border-box;
}

/* Green/Teal overlay matching the image */
.auth-card__promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 112, 119, 0.95) 0%, rgba(0, 169, 166, 0.8) 50%, rgba(0, 169, 166, 0.3) 100%);
  z-index: 1;
}

.auth-card__promo-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.auth-card__promo h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
  color: #ffffff;
}

.auth-card__promo h2 span {
  color: #bb9a62; /* Gold text */
}

.auth-card__promo p {
  font-size: 1.35rem;
  line-height: 1.5;
  margin: 0 0 28px;
  opacity: 0.95;
  color: #ffffff;
}

.btn-promo-reg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #bb9a62;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 300ms ease;
  width: fit-content;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  cursor: pointer;
}

.btn-promo-reg:hover {
  background: #cba86e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Form panel styling (right column) */
.auth-card__form {
  padding: 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.auth-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.auth-form-header i {
  font-size: 2.4rem;
  color: #bb9a62;
}

.auth-form-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  color: #0f7077;
}

.auth-form-header h2 span {
  color: #bb9a62;
}

/* Tab selector links */
.login-toggle-tab.active {
  color: #00a9a6 !important;
  border-bottom-color: #00a9a6 !important;
}

/* Remember me custom checkbox */
.remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.remember-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  user-select: none;
}

.remember-label input {
  display: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #ffffff;
  font-size: 1.1rem;
  background: #ffffff;
}

.remember-label input:checked + .custom-checkbox {
  background: #00a9a6;
  border-color: #00a9a6;
}

.remember-label input:checked + .custom-checkbox i {
  display: block !important;
}

/* Password Eye Toggle Input Wrap */
.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 44px;
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.15s;
}

.password-toggle-btn:hover {
  color: #475569;
}

/* Profile dashboard */
.user-page {
  background: #f8fafc;
  min-height: 80vh;
  padding: 40px 0 80px;
  position: relative;
}

.user-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 991px) {
  .user-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Sidebar Styling */
.user-sidebar {
  background: #ffffff;
  border: 1px solid rgba(15, 112, 119, 0.08);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(15, 112, 119, 0.03),
              0 1px 3px rgba(0, 0, 0, 0.01);
  position: sticky;
  top: 100px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.user-sidebar:hover {
  box-shadow: 0 20px 40px rgba(15, 112, 119, 0.06),
              0 1px 5px rgba(0, 0, 0, 0.02);
}

.user-profile-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.user-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2cf 0%, #00a9a6 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 800;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(0, 169, 166, 0.15);
  margin: 0 auto;
}

.user-avatar-status {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.user-email {
  font-size: 1.25rem;
  color: #64748b;
  margin: 0;
  word-break: break-all;
  font-weight: 500;
}

.user-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 3px solid transparent;
}

.user-nav a i {
  font-size: 1.6rem;
  color: #64748b;
  transition: color 0.2s;
}

.user-nav a:hover {
  background: rgba(0, 169, 166, 0.04);
  color: #00a9a6;
  transform: translateX(4px);
}

.user-nav a:hover i {
  color: #00a9a6;
}

.user-nav a.active {
  background: rgba(0, 169, 166, 0.06);
  color: #0f7077;
  border-left-color: #00a9a6;
  font-weight: 700;
}

.user-nav a.active i {
  color: #0f7077;
}

.btn-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #fef2f2;
  color: #ef4444;
  font-size: 1.35rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
}

/* Dashboard Welcome & Stats */
.dashboard-welcome {
  background: linear-gradient(135deg, #0f7077 0%, #008885 100%);
  color: #ffffff;
  padding: 28px 32px;
  border-radius: 20px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 112, 119, 0.1);
}

.dashboard-welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.dashboard-welcome h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.dashboard-welcome p {
  font-size: 1.35rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(15, 112, 119, 0.06);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(15, 112, 119, 0.015);
  transition: all 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 112, 119, 0.04);
  border-color: rgba(0, 169, 166, 0.15);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 169, 166, 0.08);
  color: #00a9a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

/* User Content Card */
.user-card {
  background: #ffffff;
  border: 1px solid rgba(15, 112, 119, 0.06);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 112, 119, 0.02);
  margin-bottom: 28px;
}

.user-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Donations Tab Feed */
.donation-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.donation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  gap: 16px;
  flex-wrap: wrap;
  transition: all 0.2s ease;
}

.donation-row:hover {
  background: #fdfdfd;
  border-color: rgba(0, 169, 166, 0.15);
  box-shadow: 0 4px 12px rgba(15, 112, 119, 0.02);
}

.donation-meta {
  display: flex;
  flex-direction: column;
}

.donation-ref {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f7077;
  font-family: monospace;
  background: rgba(0, 169, 166, 0.05);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 4px;
  width: fit-content;
}

.donation-date {
  font-size: 1.2rem;
  color: #94a3b8;
  font-weight: 500;
}

.donation-badge-col {
  display: flex;
  align-items: center;
}

.order-badge {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-paid {
  background: #dcfce7;
  color: #15803d;
}

.badge-pending {
  background: #fef9c3;
  color: #854d0e;
}

.donation-action {
  display: flex;
  align-items: center;
}

.btn-receipt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-receipt:hover {
  background: #0369a1;
  color: #ffffff;
  border-color: #0369a1;
  transform: translateY(-1px);
}

.donation-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #00a9a6;
  text-align: right;
  min-width: 90px;
}

/* Forms Grid Layout */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media(max-width:640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-group-full {
  margin-bottom: 24px;
}

.form-submit-wrap {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

/* Custom Styled Switches */
.notifications-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noti-preference-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: background 0.15s ease;
}

.noti-preference-row:hover {
  background: #fafcfc;
}

.noti-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 80%;
}

.noti-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}

.noti-desc {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.4;
}

/* Toggle Switch HTML markup styling */
.switch-control {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch-control input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.switch-control input:checked + .switch-slider {
  background-color: #00a9a6;
}

.switch-control input:checked + .switch-slider:before {
  transform: translateX(22px);
}

.switch-control input:focus + .switch-slider {
  box-shadow: 0 0 1px #00a9a6;
}

/* Card Visual Graphics */
.credit-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.credit-card-item {
  background: linear-gradient(135deg, #0a3333 0%, #0a4f4f 50%, #008885 100%);
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 112, 119, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.credit-card-item:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 16px 32px rgba(15, 112, 119, 0.25);
}

.credit-card-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
  border-radius: 6px;
  position: relative;
}

.card-chip::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  right: 6px;
  bottom: 4px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
}

.card-number {
  font-size: 1.8rem;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.12em;
  margin: 12px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.card-holder-name {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card-expiry {
  text-align: right;
}

.card-expiry-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  display: block;
}

.card-expiry-val {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: monospace;
}

/* Breadcrumb customization (compact 100px height dashboard header) */
.breadcrumb-band {
  background: linear-gradient(135deg, #0a3a3d 0%, #005a5a 100%);
  padding: 12px 0 !important;
  color: #fff;
}
.breadcrumb-band .page-hero {
  padding: 10px 0 !important;
}
.breadcrumb-band .page-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem !important;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}
.breadcrumb-band .islamic-deco {
  height: 50px !important;
  opacity: 0.8;
}
.breadcrumb-band .istar.s1,
.breadcrumb-band .istar.s2,
.breadcrumb-band .istar.s3,
.breadcrumb-band .istar.s4,
.breadcrumb-band .istar.s5,
.breadcrumb-band .ihex.h1,
.breadcrumb-band .ihex.h2 {
  transform: scale(0.5) !important;
  transform-origin: right center;
  top: -10px !important;
}
.breadcrumb-band .breadcrumb-nav--bottom-right {
  bottom: -2px !important;
  font-size: 1.1rem !important;
}
.breadcrumb-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-nav a:hover {
  color: #fff;
}
.breadcrumb-sep {
  color: rgba(255,255,255,0.4);
  margin: 0 8px;
}

/* Payment History Accordion Styling */
.sub-payment-history summary::-webkit-details-marker {
  display: none;
}
.sub-payment-history summary {
  list-style: none;
}
.sub-payment-history[open] .history-arrow {
  transform: rotate(180deg);
}
.sub-payment-history {
  transition: all 0.3s ease;
}


