/* Dashboard specific styles */
.dashboard {
  padding: 2rem;
  background: #f9f9f9;
  min-height: 80vh;
}

.dashboard__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
}

.dashboard__profile h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.dashboard__profile p {
  font-size: 1rem;
  color: #555;
}

.dashboard__purchases h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.purchase__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
}

.purchase__item:last-child {
  border-bottom: none;
}

.purchase__title {
  font-weight: 500;
}

.purchase__btn {
  padding: 0.4rem 1rem;
  background: #10c875;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.purchase__btn:hover {
  background: #064431;
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard__container {
    flex-direction: column;
  }
}
.dashboard-hero {
  background: linear-gradient(135deg, #064431, #10c875);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.dashboard-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dashboard-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.stat-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1;
}

.stat-card h3 {
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #10c875;
}

.dashboard__purchases {
  max-width: 900px;
  margin: auto;
}

.purchase__item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.purchase__btn {
  background: #10c875;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.purchase__btn:hover {
  background: #064431;
}
