/* ========================================
   Dashboard Page Specific Styles
   Minimal page-specific rules only
   ======================================== */

/* Dashboard Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Stats Cards */
.stats-card {
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.stats-card .stats-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-card .stats-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
  background: var(--bs-card-bg);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-sidebar .nav-link {
  color: var(--bs-body-color);
  padding: 0.75rem 1rem;
  border-radius: var(--bs-border-radius);
  transition: all 0.2s ease-in-out;
}

.dashboard-sidebar .nav-link:hover {
  background-color: var(--bs-light);
  color: var(--bs-primary);
}

.dashboard-sidebar .nav-link.active {
  background-color: var(--bs-primary);
  color: white;
}

/* Dashboard Content */
.dashboard-content {
  background: var(--bs-card-bg);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.dashboard-header {
  border-bottom: 1px solid var(--bs-card-border-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.dashboard-header h1 {
  margin: 0;
  color: var(--bs-dark);
  font-weight: 600;
}

.dashboard-header .breadcrumb {
  margin: 0;
  background: none;
  padding: 0;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.quick-actions .btn {
  flex: 1;
  min-width: 150px;
}

/* Recent Activity */
.recent-activity {
  max-height: 400px;
  overflow-y: auto;
}

.recent-activity .activity-item {
  padding: 1rem;
  border-bottom: 1px solid var(--bs-card-border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.recent-activity .activity-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-light);
  color: var(--bs-primary);
}

/* Responsive Dashboard */
@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-actions {
    flex-direction: column;
  }
  
  .quick-actions .btn {
    min-width: auto;
  }
  
  .dashboard-content {
    padding: 1rem;
  }
}
