/* Henddu Dashboard Specific Styling */

/* Dashboard overview section */
.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background-color: var(--pf-global--BackgroundColor--100);
  border-radius: var(--henddu-border-radius);
  box-shadow: var(--henddu-shadow);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--henddu-transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--henddu-shadow-lg);
}

.stat-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--henddu-primary);
}

.stat-card__title {
  margin: 0;
  color: var(--pf-global--Color--200);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card__value {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
  color: var(--pf-global--Color--100);
}

.stat-card__change {
  font-size: 12px;
  display: flex;
  align-items: center;
}

.stat-card__change--positive {
  color: #48bb78;
}

.stat-card__change--negative {
  color: #f56565;
}

/* Recent activity section */
.recent-activity {
  background-color: var(--pf-global--BackgroundColor--100);
  border-radius: var(--henddu-border-radius);
  box-shadow: var(--henddu-shadow);
  padding: 20px;
  margin-bottom: 30px;
}

.recent-activity__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--pf-global--BorderColor--100);
  padding-bottom: 10px;
}

.recent-activity__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--henddu-primary);
}

.activity-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--pf-global--BorderColor--100);
  display: flex;
  align-items: center;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item__icon {
  width: 36px;
  height: 36px;
  background-color: rgba(14, 115, 119, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--henddu-primary);
}

.activity-item__content {
  flex: 1;
}

.activity-item__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.activity-item__time {
  font-size: 12px;
  color: var(--pf-global--Color--200);
  margin-top: 2px;
}

/* Quick Actions Section */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.action-card {
  background-color: var(--pf-global--BackgroundColor--100);
  border-radius: var(--henddu-border-radius);
  box-shadow: var(--henddu-shadow);
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--henddu-transition);
}

.action-card:hover {
  background-color: var(--henddu-primary);
  color: white;
  transform: translateY(-2px);
}

.action-card__icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.action-card__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dashboard-overview {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .quick-actions {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

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