.mam-ld-dashboard {
  max-width: 1100px;
  margin: 18px auto;
  padding: 8px;
}

.mam-ld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.mam-ld-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.mam-ld-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.mam-ld-card-head h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #222;
}

.mam-ld-balance {
  font-weight: 700;
  font-size: 1.3rem;
  color: #0073aa;
}

.mam-ld-card-foot {
  text-align: right;
  margin-top: 10px;
}

.mam-ld-link {
  text-decoration: none;
  color: #0073aa;
  font-weight: 600;
}

.mam-ld-link:hover {
  text-decoration: underline;
}

/* --- Orders --- */
.mam-ld-orders {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mam-order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f1f1;
  padding: 6px 0;
}

.mam-order-item span {
  min-width: 0;
  padding: 0 6px;
}

.mam-order-item .id { font-weight: 600; color: #111; width: 18%; }
.mam-order-item .date { width: 28%; text-align: left; color: #444; }
.mam-order-item .total { width: 28%; text-align: right; color: #111; }
.mam-order-item .status { width: 26%; text-align: right; color: #666; }
