.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.dash-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dash-box i {
  font-size: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  padding: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 2;
}

.dash-box .content {
  z-index: 2;
}

.dash-box h4 {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}

.dash-box p {
  font-size: 14px;
  color: #f5f5f5;
  opacity: 0.9;
  margin: 0;
}

.dash-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 180%;
  height: 100%;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.dash-box:hover {
  transform: translateY(-2px);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dash-box:hover::before {
  left: -20%;
}

/* --- Colors for each box --- */
.box1 {
  background: linear-gradient(135deg, #007bff, #00c6ff);
}

.box2 {
  background: linear-gradient(135deg, #28a745, #7be495);
}

.box3 {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.box4 {
  background: linear-gradient(135deg, #9c27b0, #e040fb);
}

.box5 {
  background: linear-gradient(135deg, #ff5252, #ff867c);
}

.box6 {
  background: linear-gradient(135deg, #2196f3, #03a9f4);
}



.hours-spend-chart {
    margin-top: 30px;
    padding: 25px 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* text-align: center; */
    color: #9c27b0;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
  }


  .hours-spend-chart h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
  }

  #hoursChart {
    width: 100% !important;
    /* max-width: 800px; */
    height: 380px !important;
    margin: auto;
  }

  

  
  .divider-bottom {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00c6ff, transparent);
  border-radius: 2px;
  margin: 50px 0;
  position: relative;
}

.divider-bottom::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #00c6ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}
