/* ===================================
   DASHBOARD PAGE STYLES
   =================================== */

.welcome-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  color: var(--text-inverse);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 500ms ease forwards;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  left: -50px;
}

.welcome-banner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -60px;
  left: 40%;
}

.welcome-content {
  position: relative;
  z-index: 1;
}

.welcome-greeting {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 4px;
  font-weight: 500;
}

.welcome-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.welcome-message {
  font-size: 15px;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.8;
}

.welcome-progress {
  margin-top: 20px;
  max-width: 400px;
}

.welcome-progress .progress-info {
  color: rgba(255, 255, 255, 0.85);
}

.welcome-progress .progress-value {
  color: #FFFFFF;
}

.welcome-progress .progress-bar {
  background: rgba(255, 255, 255, 0.2);
}

.welcome-progress .progress-bar-fill {
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0.8) 100%);
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* Activity List */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--accent);
  transition: all var(--transition-fast);
}

.activity-item:hover {
  background: var(--accent-dark);
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon .material-icons-round {
  font-size: 20px;
  color: var(--text-inverse);
}

.activity-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.activity-time {
  font-size: 12px;
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  width: 100%;
  font-family: inherit;
}

.quick-action-btn:hover {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
}

.quick-action-btn .material-icons-round {
  font-size: 22px;
  color: var(--primary);
}

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

  .welcome-name {
    font-size: 20px;
  }
}
