/* ===================== DASHBOARD ===================== */
.dash-body { background: #f1f5f9; }

.dash-greeting { font-size: 24px; font-weight: 700; margin-bottom: 4px; color: #0f172a; }
.dash-subgreeting { font-size: 14px; color: #64748b; margin-bottom: 22px; }

.dash-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 22px 24px 48px;
}

.dash-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.dash-tile {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: transform .15s, box-shadow .15s;
  display: block;
}
.dash-tile:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }

.dash-tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.dash-icon-purple { background: #ede9fe; }
.dash-icon-blue   { background: #dbeafe; }
.dash-icon-green  { background: #dcfce7; }
.dash-icon-orange { background: #ffedd5; }
.dash-icon-pink   { background: #fce7f3; }
.dash-icon-teal   { background: #ccfbf1; }

.dash-tile-title { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.dash-tile-desc { font-size: 12px; color: #64748b; }

.dash-upcoming {
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.dash-payment-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
  transition: background .15s;
}
.dash-payment-row:last-child { border-bottom: none; }
.dash-payment-row:hover { background: #f8fafc; }

.dash-payment-date {
  background: #e0e7ff;
  color: #3730a3;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  min-width: 56px;
  text-align: center;
}

.dash-payment-info { flex: 1; min-width: 0; }
.dash-payment-name { font-size: 14px; font-weight: 700; color: #0f172a; }
.dash-payment-sub { font-size: 12px; color: #64748b; margin-top: 2px; }

.dash-payment-amt {
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.dash-empty {
  padding: 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
}

@media (max-width: 640px) {
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== PROFILE MENU ===================== */
.profile-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  background: none;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.profile-menu-item:last-child { border-bottom: none; }
.profile-menu-item:hover { background: #f8fafc; }

.profile-menu-icon { font-size: 20px; }
.profile-menu-text { flex: 1; display: flex; flex-direction: column; }
.profile-menu-title { font-size: 14px; font-weight: 700; color: #0f172a; }
.profile-menu-desc { font-size: 12px; color: #64748b; margin-top: 2px; }
.profile-menu-arrow { color: #cbd5e1; font-size: 18px; }

.profile-menu-danger .profile-menu-title { color: #dc2626; }
