/* Dashboard specific styles */
#dashboard .cards {
  margin-top: 30px;
}

#dashboard .card {
  display: flex;
  flex-direction: column;
}

#dashboard .card i {
  align-self: flex-start;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.quick-stat {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.quick-stat label {
  display: block;
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.quick-stat .value {
  font-size: 24px;
  font-weight: 700;
  color: #667eea;
}

@media (max-width: 600px) {
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}