    /* Dashboard-specific variables (extend global.css) */
    :root {
      /* Aliases for consistency with global.css variable names */
      --primary: var(--primary-color);
      --text-muted: var(--text-secondary);
      --shadow-hover: var(--shadow-lg);
      /* Dashboard-specific additions */
      --primary-light: #eef2ff;
      --card-background: var(--background);
      --background-light: var(--background-secondary);
      --border: var(--border-color);
      --border-light: #f3f4f6;
    }

    /* Ensure body has top padding for fixed header */
    body {
      padding-top: 80px;
      /* Height of fixed header */
    }

    .dashboard-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
      min-height: calc(100vh - 80px);
      /* Account for header height */
    }

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

    .dashboard-header-content h1 {
      font-size: 2rem;
      margin-bottom: 0.25rem;
      color: var(--primary-dark);
    }

    .dashboard-header-content p {
      color: var(--text-muted);
      font-size: 1rem;
      margin: 0;
    }

    .dashboard-actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .dashboard-card {
      background: var(--card-background);
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s ease;
    }

    .dashboard-card:hover {
      box-shadow: var(--shadow-hover);
    }

    .card-header {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .card-icon {
      font-size: 2rem;
      margin-right: 1rem;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--primary-dark);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .stat-item {
      text-align: center;
      padding: 0.75rem;
      background: var(--background-light);
      border-radius: 8px;
    }

    .stat-number {
      display: block;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    .projects-list {
      max-height: none;
      overflow-y: visible;
    }

    .project-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem;
      border-bottom: 1px solid var(--border-light);
      transition: background-color 0.2s ease;
    }

    .project-item:hover {
      background-color: var(--background-light);
    }

    .project-item:last-child {
      border-bottom: none;
    }

    .project-info {
      flex: 1;
    }

    .project-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .project-clickable {
      cursor: pointer;
      border-radius: 8px;
    }

    .project-clickable:hover {
      background-color: var(--background-light);
      box-shadow: var(--shadow);
    }

    .project-info h4 {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.125rem;
      color: var(--primary-dark);
    }

    .project-info p {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.3;
    }

    .project-url {
      font-size: 0.7rem;
      color: var(--primary);
      margin-top: 0.125rem;
      display: block;
    }

    .external-link {
      font-size: 0.875rem;
      opacity: 0.7;
      margin-left: 0.5rem;
    }

    .project-status {
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
    }

    .status-live {
      background: #dcfce7;
      color: #166534;
    }

    .status-draft {
      background: #fef3c7;
      color: #92400e;
    }

    .status-pending {
      background: #dbeafe;
      color: #1e40af;
    }

    .recent-activity {
      max-height: 300px;
      overflow-y: auto;
    }

    .activity-item {
      display: flex;
      align-items: center;
      padding: 1rem;
      border-bottom: 1px solid var(--border-light);
    }

    .activity-item:last-child {
      border-bottom: none;
    }

    .activity-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      font-size: 1.25rem;
    }

    .activity-icon.success {
      background: #dcfce7;
      color: #166534;
    }

    .activity-icon.info {
      background: #dbeafe;
      color: #1e40af;
    }

    .activity-icon.warning {
      background: #fef3c7;
      color: #92400e;
    }

    .activity-content h5 {
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--primary-dark);
    }

    .activity-content p {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin: 0;
    }

    .create-project-card {
      border: 2px dashed var(--border);
      background: var(--background-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 200px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .create-project-card:hover {
      border-color: var(--primary);
      background: var(--primary-light);
    }

    .create-project-card .icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

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

    .empty-state .icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }

    .quick-actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .quick-action {
      padding: 0.5rem 1rem;
      border-radius: 8px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.875rem;
      transition: background-color 0.2s ease;
    }

    .quick-action:hover {
      background: var(--primary-dark);
    }

    .quick-action.secondary {
      background: var(--background-light);
      color: var(--primary-dark);
      border: 1px solid var(--border);
    }

    .quick-action.secondary:hover {
      background: var(--border-light);
    }

    .btn-small {
      padding: 0.375rem 0.75rem;
      font-size: 0.875rem;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      font-weight: 500;
      transition: background-color 0.2s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-small.btn-primary {
      background: var(--primary);
      color: white;
    }

    .btn-small.btn-primary:hover {
      background: var(--primary-dark);
    }

    @media (max-width: 768px) {
      body {
        padding-top: 70px;
        /* Slightly less on mobile */
      }

      .dashboard-container {
        padding: 1rem;
      }

      .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .dashboard-grid {
        grid-template-columns: 1fr;
      }

      .stat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .quick-actions {
        flex-direction: column;
      }

      .quick-action {
        text-align: center;
      }

      .project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .project-actions {
        align-self: flex-end;
      }

      .assets-tabs {
        flex-wrap: wrap;
      }

      .tab-button {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
      }

      .campaign-status-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
      }

      .asset-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .assets-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Campaign modal specific styles */
    .help-text {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
      display: block;
    }

    .form-actions {
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
      margin-top: 1.5rem;
    }

    .text-muted {
      color: var(--text-muted);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    /* New Campaign Asset Management Styles */
    .campaign-status-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: var(--background-light);
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .status-badge {
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
    }

    .status-badge.draft {
      background: #fef3c7;
      color: #92400e;
    }

    .status-badge.running {
      background: #dcfce7;
      color: #166534;
    }

    .status-badge.pending {
      background: #dbeafe;
      color: #1e40af;
    }

    .assets-tabs {
      display: flex;
      gap: 0.5rem;
      border-bottom: 1px solid var(--border);
      padding-bottom: 0.5rem;
    }

    .tab-button {
      padding: 0.5rem 1rem;
      border: none;
      background: transparent;
      cursor: pointer;
      border-radius: 6px 6px 0 0;
      font-weight: 500;
      color: var(--text-muted);
      transition: all 0.2s ease;
    }

    .tab-button:hover {
      background: var(--background-light);
      color: var(--primary-dark);
    }

    .tab-button.active {
      background: var(--primary);
      color: white;
    }

    .asset-card {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
      background: white;
      transition: box-shadow 0.2s ease;
    }

    .asset-card:hover {
      box-shadow: var(--shadow);
    }

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

    .asset-title {
      font-weight: 600;
      color: var(--primary-dark);
      font-size: 0.9rem;
    }

    .asset-type {
      background: var(--primary-light);
      color: var(--primary);
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
    }

    .asset-content {
      margin-bottom: 1rem;
      line-height: 1.5;
      color: #374151;
    }

    .asset-actions {
      display: flex;
      gap: 0.5rem;
    }

    .asset-actions button {
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      border-radius: 4px;
      border: 1px solid var(--border);
      background: white;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .asset-actions button:hover {
      background: var(--background-light);
      color: var(--primary-dark);
    }

    .asset-actions .btn-danger {
      border-color: #ef4444;
      color: #ef4444;
    }

    .asset-actions .btn-danger:hover {
      background: #fee2e2;
    }

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

    .assets-by-type {
      margin-bottom: 2rem;
    }

    .asset-type-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border-light);
    }

    .asset-type-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--primary-dark);
      text-transform: capitalize;
    }

    .asset-type-count {
      background: var(--background-light);
      color: var(--text-muted);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
    }

    .empty-assets {
      text-align: center;
      padding: 2rem;
      color: var(--text-muted);
      background: var(--background-light);
      border-radius: 8px;
      border: 2px dashed var(--border);
    }

    .loading-assets {
      text-align: center;
      padding: 2rem;
      color: var(--text-muted);
    }

    /* Select styling */
    select {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 1rem;
      background: white;
      color: #374151;
      cursor: pointer;
    }

    select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    /* Stat badges for project items */
    .project-meta {
      display: flex;
      gap: 0.5rem;
      margin: 0.5rem 0;
      flex-wrap: wrap;
    }

    .stat-badge {
      display: inline-block;
      background: var(--background-light);
      color: var(--text-muted);
      padding: 0.25rem 0.75rem;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    /* Signups modal specific styles */
    #signupsModal table {
      background: white;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
    }

    #signupsModal th {
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.5px;
      color: var(--text-muted);
    }

    #signupsModal tr:hover {
      background: var(--background-light);
    }