.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.dash-box {
  color: #fff;
  padding: 25px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dash-box i {
  font-size: 28px;
  margin-bottom: 12px;
}

.dash-box h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.dash-box p {
  font-size: 14px;
  opacity: 0.9;
}

/* Hover animation */
.dash-box:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Different Colors */
.box1 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.box2 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.box3 { background: linear-gradient(135deg, #fa709a, #fee140); }
.box4 { background: linear-gradient(135deg, #fddb92, #d1fdff); color:#333; }
.box5 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.box6 { background: linear-gradient(135deg, #ff9a9e, #fad0c4); }
