/* DASHBOARD LAYOUT */
.dashboard {
  padding: 60px 120px;
  min-height: 85vh;
  background: #f6f9fc;
}

/* HEADER TEXT */
.dash-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
}

.dash-header p {
  font-size: 18px;
  color: #555;
  margin-top: 6px;
  margin-bottom: 40px;
}

/* ACTION CARDS */
.dash-actions {
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
}

.dash-card {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dash-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.dash-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 10px;
}

.dash-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

/* BUTTONS */
.dash-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #4CAF4F;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s ease;
}

.dash-btn:hover {
  background: #3e8d41;
}

/* QUICK STATS */
.dash-stats {
  margin-top: 20px;
}

.stats-box {
  margin-top: 8px;
  background: white;
  border-radius: 14px;
  padding: 18px;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
