/**
 * DataJam Pulse - Dashboard Styles
 * Phase 5 - CSS Extraction (Batch 4)
 * Extracted: Dec 15, 2025
 * Source: index.html lines 1186-1659
 * Version: v5.4.10
 */

        /* === v4.0.0: DASHBOARD HEADLINE INSIGHT CARD === */
        .headline-insight-card {
            background: linear-gradient(135deg, rgba(230, 47, 110, 0.15), rgba(233, 75, 82, 0.08));
            border: 1px solid rgba(230, 47, 110, 0.3);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
        }

        .headline-insight-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(230, 47, 110, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .headline-insight-icon {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .headline-insight-text {
            font-size: 18px;
            line-height: 1.5;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .headline-insight-text strong {
            color: #E62F6E;
        }

        .headline-insight-action {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #E62F6E;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: gap 0.2s;
        }

        .headline-insight-action:hover {
            gap: 10px;
        }

        /* === v5.0.0: WELCOME LANDING PAGE === */
        .welcome-container {
            padding: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .welcome-hero {
            text-align: center;
            margin-bottom: 32px;
        }

        .welcome-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px 0;
        }

        .welcome-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin: 0;
        }

        .welcome-action-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        .welcome-action-tile {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--bg-secondary);
            border: 1px solid var(--bg-tertiary);
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .welcome-action-tile:hover {
            border-color: rgba(230, 47, 110, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(230, 47, 110, 0.15);
        }

        .welcome-tile-icon {
            /* Base container for tile icons - dj-icon and tile-icon classes handle sizing */
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .welcome-tile-content {
            flex: 1;
        }

        .welcome-tile-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .welcome-tile-desc {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .welcome-tile-arrow {
            font-size: 20px;
            color: var(--text-muted);
            transition: transform 0.2s;
        }

        .welcome-action-tile:hover .welcome-tile-arrow {
            transform: translateX(4px);
            color: #E62F6E;
        }

        .welcome-secondary-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-bottom: 32px;
        }

        .welcome-secondary-btn {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid var(--bg-tertiary);
            border-radius: 24px;
            color: var(--text-secondary);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .welcome-secondary-btn:hover {
            border-color: rgba(230, 47, 110, 0.5);
            color: #E62F6E;
            background: rgba(230, 47, 110, 0.05);
        }

        .welcome-saved-section {
            margin-bottom: 24px;
        }

        .welcome-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .welcome-section-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .welcome-section-link {
            font-size: 13px;
            color: #E62F6E;
            cursor: pointer;
        }

        .welcome-section-link:hover {
            text-decoration: underline;
        }

        .welcome-saved-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }

        .welcome-saved-card {
            padding: 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--bg-tertiary);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .welcome-saved-card:hover {
            border-color: rgba(230, 47, 110, 0.5);
            transform: translateY(-2px);
        }

        .welcome-saved-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .welcome-saved-project {
            font-size: 12px;
            color: var(--text-muted);
        }

        .welcome-firsttime {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px;
            background: linear-gradient(135deg, rgba(230, 47, 110, 0.1), rgba(233, 75, 82, 0.05));
            border: 1px dashed rgba(230, 47, 110, 0.3);
            border-radius: 16px;
            margin-bottom: 24px;
        }

        .welcome-firsttime-icon {
            font-size: 32px;
        }

        .welcome-firsttime-text {
            flex: 1;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .welcome-firsttime-btn {
            padding: 10px 20px;
            background: linear-gradient(135deg, #E62F6E, #E94B52);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .welcome-firsttime-btn:hover {
            transform: scale(1.05);
        }

        .welcome-tip {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: var(--bg-secondary);
            border-radius: 12px;
            border-left: 3px solid #E62F6E;
        }

        .welcome-tip-icon {
            font-size: 20px;
        }

        .welcome-tip-text {
            font-size: 14px;
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .welcome-container {
                padding: 20px;
            }

            .welcome-title {
                font-size: 24px;
            }

            .welcome-action-grid {
                grid-template-columns: 1fr;
            }

            .welcome-secondary-actions {
                flex-direction: column;
            }

            .welcome-secondary-btn {
                width: 100%;
                text-align: center;
            }

            .welcome-firsttime {
                flex-direction: column;
                text-align: center;
            }
        }

        /* === v4.0.0: DASHBOARD KPI STRIP === */
        .dashboard-kpi-strip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }

        .dashboard-kpi-card {
            background: var(--bg-secondary);
            border: 1px solid var(--bg-tertiary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.2s;
        }

        .dashboard-kpi-card:hover {
            border-color: rgba(230, 47, 110, 0.3);
            transform: translateY(-2px);
        }

        .dashboard-kpi-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .dashboard-kpi-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dashboard-kpi-trend {
            font-size: 12px;
            margin-top: 8px;
            padding: 4px 8px;
            border-radius: 12px;
            display: inline-block;
        }

        .dashboard-kpi-trend.positive {
            background: rgba(74, 222, 128, 0.15);
            color: #4ade80;
        }

        .dashboard-kpi-trend.negative {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }

        /* === v4.0.0: DASHBOARD SECTION HEADERS === */
        .dashboard-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .dashboard-section-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .dashboard-section-link {
            font-size: 13px;
            color: #E62F6E;
            text-decoration: none;
            cursor: pointer;
        }

        .dashboard-section-link:hover {
            text-decoration: underline;
        }

        /* === v4.0.0: DASHBOARD LOCATION CARDS === */
        .dashboard-location-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--bg-secondary);
            border: 1px solid var(--bg-tertiary);
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .dashboard-location-card:hover {
            border-color: rgba(230, 47, 110, 0.4);
            background: var(--bg-tertiary);
        }

        .dashboard-location-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .dashboard-location-rank {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #E62F6E, #E94B52);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: white;
        }

        .dashboard-location-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .dashboard-location-project {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .dashboard-location-stats {
            text-align: right;
        }

        .dashboard-location-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .dashboard-location-change {
            font-size: 11px;
            margin-top: 2px;
        }

        .dashboard-location-change.positive { color: #4ade80; }
        .dashboard-location-change.negative { color: #ef4444; }

        @media (max-width: 768px) {
            .headline-insight-card {
                padding: 20px;
            }
            .headline-insight-text {
                font-size: 16px;
            }
            .dashboard-kpi-strip {
                grid-template-columns: repeat(2, 1fr);
            }
            .dashboard-kpi-value {
                font-size: 22px;
            }
        }

