/* ==========================================
   PAGE HEADER GLOBAL STYLES
   ========================================== */

/* PAGE HEADER */
.page-header {
  background: white;
  padding: 1.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #2563eb;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.page-header h1 {
  margin: 0 0 0.3rem 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
}

.page-header h1 i {
  margin-right: 0.5rem;
  color: #2563eb;
}

.page-header p {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.header-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: #f9fafb;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-date {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f0f4ff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .page-header h1 {
    font-size: 1.4rem;
  }

  .page-header {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .header-stats {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-date {
    width: 100%;
  }
}
