* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px;
}

.dashboard-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  color: #222;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dashboard-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-color: #d1d1d1;
}

.dashboard-item .icon {
  width: 70px;
  height: 70px;
  background: #f2f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 32px;
  color: #0059ff;
  transition: all 0.3s ease;
}

.dashboard-item:hover .icon {
  background: #e9efff;
  color: #003ccc;
}

.dashboard-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
