/* Dashboard Page Styles */
.dashboard-welcome {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.dashboard-welcome h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.quote-of-the-day {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-of-the-day i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.quote-of-the-day p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.quote-author {
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.stat-info h3 {
  font-size: 2rem;
  margin: 0;
}

.stat-info p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.dashboard-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dashboard-section {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.view-all-btn {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  text-decoration: underline;
}

.tasks-list, .reminders-list, .activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.task-item, .reminder-item, .activity-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.empty-state-small {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.empty-state-small i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.weekly-progress {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.progress-chart {
  height: 200px;
}

.progress-stats {
  display: flex;
  justify-content: space-around;
}

.progress-stat-item {
  text-align: center;
}

.progress-stat-item .stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.progress-stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quick-action-btn {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.quick-action-btn:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.quick-action-btn i {
  font-size: 2rem;
}
