/* EnrollFalcon Shared Page Styles */
/* Use across all pages for consistent headers and layout */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-5, 20px);
}

.header {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200, #e5e5e5);
}

.header h1 {
  color: var(--gray-900, #171717);
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.header p {
  color: var(--gray-600, #525252);
  font-size: 14px;
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-500, #667eea);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-600, #5568d3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: var(--gray-100, #f5f5f5);
  color: var(--gray-700, #404040);
}

.btn-secondary:hover {
  background: var(--gray-200, #e5e5e5);
}

.btn-download {
  background: #10b981;
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-download:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.content-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200, #e5e5e5);
}

.section-header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200, #e5e5e5);
}

.section-header h2 {
  font-size: 18px;
  color: var(--gray-900, #171717);
  font-weight: 600;
}

.section-header p {
  font-size: 14px;
  color: var(--gray-600, #525252);
  margin-top: 4px;
}
