/* Shared Portal Page Styles (Admin & Member) */

/* Base portal page section */
.portal-page {
  padding-top: 80px;
  padding-bottom: 120px;
}

/* Wrapper for content with max-width */
.portal-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Standardized header styles */
.portal-page-header {
  margin-bottom: 40px;
}

.portal-page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.portal-page-header p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Standardized empty state */
.portal-page-empty {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 12px;
  border: 2px dashed var(--color-border);
}

.portal-page-empty p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Responsive styles */
@media (min-width: 640px) {
  .portal-page-header h1 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .portal-page-header h1 {
    font-size: 48px;
  }
}

