.mam-dashboard {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.mam-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

.mam-balance {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0073aa;
}

.mam-bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mam-bundle {
  background: #f9f9f9;
  border: 2px solid #0073aa;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mam-bundle:hover {
  background: #0073aa;
  color: white;
  transform: scale(1.03);
}

.mam-bundle-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.mam-bundle-total {
  font-size: .9rem;
  opacity: 0.85;
}

.mam-history-header, .mam-history-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.mam-history-header {
  font-weight: bold;
  background: #f3f3f3;
}

.mam-empty {
  text-align: center;
  color: #888;
}

.mam-order-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
