        /* Import base styles from previous phases */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1e40af;
            --secondary-blue: #3b82f6;
            --light-blue: #dbeafe;
            --dark-gray: #1f2937;
            --medium-gray: #6b7280;
            --light-gray: #f9fafb;
            --white: #ffffff;
            --accent-orange: #f59e0b;
            --light-orange: #fef3c7;
            --success-green: #10b981;
            --border-color: #e5e7eb;
            --error-red: #ef4444;
            
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --radius: 8px;
            --radius-lg: 12px;
        }

        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--light-gray);
        }

        /* Header & Navigation (inherited from previous phases) */
        .header {
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .main-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .main-nav a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: all 0.2s;
        }

        .main-nav a:hover {
            background: var(--light-orange);
            color: var(--accent-orange);
        }

        .main-nav a.active {
            background: var(--accent-orange);
            color: white;
        }

        .search-container {
            flex: 1;
            max-width: 400px;
            margin: 0 2rem;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            font-size: 0.95rem;
            background: var(--light-gray);
            transition: all 0.2s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--accent-orange);
            background: white;
            box-shadow: 0 0 0 3px rgb(245 158 11 / 0.1);
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--medium-gray);
        }

        .user-menu {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .notification-bell {
            position: relative;
            padding: 0.5rem;
            color: var(--medium-gray);
            cursor: pointer;
            border-radius: var(--radius);
            transition: all 0.2s;
        }

        .notification-bell:hover {
            background: var(--light-gray);
            color: var(--accent-orange);
        }

        .notification-badge {
            position: absolute;
            top: 0.25rem;
            right: 0.25rem;
            background: var(--accent-orange);
            color: white;
            font-size: 0.7rem;
            padding: 0.15rem 0.4rem;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
        }

        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--success-green), #059669);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        /* Page Container */
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            min-height: calc(100vh - 70px);
        }

        /* Breadcrumb */
        .breadcrumb {
            margin-bottom: 2rem;
            color: var(--medium-gray);
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--accent-orange);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* News Dashboard View (Default) */
        .dashboard-view {
            display: block;
        }

        .dashboard-view.hidden {
            display: none;
        }

        /* Page Header */
        .page-header {
            background: var(--white);
            padding: 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
        }

        .welcome-section {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 2rem;
        }

        .welcome-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }

        .welcome-subtitle {
            font-size: 1.1rem;
            color: var(--medium-gray);
            margin-bottom: 1rem;
        }

        .ai-curation-status {
            background: linear-gradient(135deg, var(--accent-orange), #d97706);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            min-width: 220px;
        }

        .curation-title {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 0.25rem;
        }

        .curation-status {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .curation-next {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-top: 0.25rem;
        }

        /* Quick Stats */
        .quick-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .stat-item {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: var(--radius);
            text-align: center;
            border-left: 4px solid var(--accent-orange);
        }

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

        .stat-label {
            font-size: 0.8rem;
            color: var(--medium-gray);
            margin-top: 0.25rem;
        }

        /* Category Filter */
        .category-filter {
            background: var(--white);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
        }

        .filter-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }

        .filter-tabs {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 0.5rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            background: var(--light-gray);
            color: var(--medium-gray);
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .filter-tab:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .filter-tab.active {
            background: var(--accent-orange);
            color: white;
            border-color: var(--accent-orange);
        }

        /* Dashboard Content */
        .dashboard-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }

        /* Main News Section */
        .news-main {
            display: grid;
            gap: 2rem;
        }

        /* Featured Article */
        .featured-article {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }

        .featured-article:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .featured-image {
            height: 200px;
            background: linear-gradient(135deg, var(--accent-orange), #d97706);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .featured-content {
            padding: 1.5rem;
        }

        .featured-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: var(--medium-gray);
            margin-bottom: 0.5rem;
        }

        .featured-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .featured-summary {
            color: var(--medium-gray);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .ai-summary {
            background: var(--light-orange);
            padding: 1rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent-orange);
        }

        .ai-summary-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--accent-orange);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .ai-points {
            list-style: none;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        .ai-points li {
            margin-bottom: 0.25rem;
            padding-left: 1rem;
            position: relative;
        }

        .ai-points li:before {
            content: "•";
            color: var(--accent-orange);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* News Grid */
        .news-grid {
            display: grid;
            gap: 1.5rem;
        }

        .news-article {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            gap: 1rem;
        }

        .news-article:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .article-image {
            width: 120px;
            height: 120px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--medium-gray);
            flex-shrink: 0;
        }

        .article-content {
            padding: 1rem;
            flex: 1;
        }

        .article-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: var(--medium-gray);
            margin-bottom: 0.5rem;
            align-items: center;
        }

        .article-category {
            background: var(--light-orange);
            color: var(--accent-orange);
            padding: 0.15rem 0.5rem;
            border-radius: 10px;
            font-weight: 500;
        }

        .ai-relevance {
            background: var(--success-green);
            color: white;
            padding: 0.15rem 0.5rem;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.7rem;
        }

        .article-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .article-excerpt {
            font-size: 0.9rem;
            color: var(--medium-gray);
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .article-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .read-time {
            font-size: 0.8rem;
            color: var(--medium-gray);
        }

        .cross-links {
            display: flex;
            gap: 0.5rem;
        }

        .cross-link {
            font-size: 0.7rem;
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
        }

        .cross-link:hover {
            background: var(--primary-blue);
            color: white;
        }

        /* Sidebar */
        .news-sidebar {
            display: grid;
            gap: 2rem;
        }

        /* AI Insights Panel */
        .ai-insights-panel {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
        }

        .insights-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--accent-orange);
            margin-bottom: 1.5rem;
        }

        .insight-item {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            border-left: 4px solid var(--accent-orange);
        }

        .insight-item:last-child {
            margin-bottom: 0;
        }

        .insight-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .insight-desc {
            font-size: 0.8rem;
            color: var(--medium-gray);
            line-height: 1.4;
        }

        /* Newsletter Signup */
        .newsletter-signup {
            background: linear-gradient(135deg, var(--accent-orange), #d97706);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
        }

        .newsletter-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .newsletter-desc {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: var(--radius);
            font-size: 0.9rem;
        }

        .newsletter-btn {
            background: white;
            color: var(--accent-orange);
            padding: 0.5rem 1rem;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .newsletter-btn:hover {
            transform: translateY(-1px);
        }

        /* Trending Topics */
        .trending-topics {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
        }

        .trending-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }

        .trending-list {
            display: grid;
            gap: 0.75rem;
        }

        .trending-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: var(--light-gray);
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.2s;
        }

        .trending-item:hover {
            background: var(--light-orange);
        }

        .trending-topic {
            font-weight: 500;
            color: var(--dark-gray);
            font-size: 0.9rem;
        }

        .trending-count {
            background: var(--accent-orange);
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        /* Hidden Views */
        .article-detail-view,
        .newsletter-view,
        .ai-curation-view {
            display: none;
        }

        .article-detail-view.show,
        .newsletter-view.show,
        .ai-curation-view.show {
            display: block;
        }

        /* Article Detail View */
        .article-detail-container {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
        }

        .article-detail-header {
            padding: 2rem;
            border-bottom: 1px solid var(--border-color);
        }

        .article-detail-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .article-detail-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .article-detail-summary {
            font-size: 1.1rem;
            color: var(--medium-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .article-content {
            padding: 2rem;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--dark-gray);
        }

        .article-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 2rem 0 1rem 0;
            color: var(--dark-gray);
        }

        .article-content p {
            margin-bottom: 1rem;
        }

        .related-articles {
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        .related-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }

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

        .related-item {
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.3s;
        }

        .related-item:hover {
            border-color: var(--accent-orange);
            transform: translateY(-1px);
        }

        .related-item-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .related-item-meta {
            font-size: 0.8rem;
            color: var(--medium-gray);
        }

        /* Newsletter View */
        .newsletter-container {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
        }

        .newsletter-header {
            background: linear-gradient(135deg, var(--accent-orange), #d97706);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .newsletter-main-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .newsletter-subtitle {
            font-size: 1rem;
            opacity: 0.9;
        }

        .newsletter-content {
            padding: 2rem;
        }

        .newsletter-preview {
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .newsletter-archive {
            display: grid;
            gap: 1rem;
        }

        .archive-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.3s;
        }

        .archive-item:hover {
            border-color: var(--accent-orange);
            background: var(--light-orange);
        }

        /* AI Curation Demo View */
        .curation-demo {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .curation-header {
            background: linear-gradient(135deg, var(--accent-orange), #d97706);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .curation-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .curation-subtitle {
            font-size: 1rem;
            opacity: 0.9;
        }

        .curation-process {
            padding: 2rem;
        }

        .process-step {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 2rem;
            opacity: 0.3;
            transition: all 0.5s;
        }

        .process-step.active {
            opacity: 1;
        }

        .process-step.completed {
            opacity: 1;
        }

        .step-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--medium-gray);
            flex-shrink: 0;
        }

        .step-icon.active {
            background: var(--accent-orange);
            color: white;
            animation: pulse 2s infinite;
        }

        .step-icon.completed {
            background: var(--success-green);
            color: white;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }

        .step-description {
            color: var(--medium-gray);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .step-result {
            background: var(--light-orange);
            padding: 0.75rem;
            border-radius: var(--radius);
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: var(--accent-orange);
            display: none;
        }

        .step-result.show {
            display: block;
        }

        /* Back Button */
        .back-button {
            background: var(--light-gray);
            color: var(--dark-gray);
            padding: 0.5rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .back-button:hover {
            background: var(--border-color);
        }

        /* Buttons */
        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

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

        .btn-primary:hover {
            background: #d97706;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: var(--light-gray);
            color: var(--dark-gray);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: var(--border-color);
        }

        /* Loading and animations */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .loading-overlay.show {
            opacity: 1;
            pointer-events: all;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--light-gray);
            border-top: 4px solid var(--accent-orange);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .page-container {
                padding: 1rem;
            }

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

            .welcome-section {
                flex-direction: column;
                gap: 1rem;
            }

            .ai-curation-status {
                align-self: stretch;
            }

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

            .news-article {
                flex-direction: column;
            }

            .article-image {
                width: 100%;
                height: 120px;
            }

            .filter-tabs {
                justify-content: center;
            }

            .main-nav {
                display: none;
            }

            .search-container {
                margin: 0 1rem;
                max-width: none;
            }

            .newsletter-form {
                flex-direction: column;
            }

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

        /* AI Assistant Widget (inherited) */
        .ai-assistant {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
        }

        .ai-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-orange), #d97706);
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .ai-toggle:hover {
            transform: scale(1.1);
        }

        .ai-chat {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 320px;
            height: 400px;
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .ai-chat.open {
            display: flex;
        }

        .ai-chat-header {
            background: var(--accent-orange);
            color: white;
            padding: 1rem;
            font-weight: 600;
        }

        .ai-chat-body {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
        }

        .ai-message {
            background: var(--light-gray);
            padding: 0.75rem;
            border-radius: var(--radius);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .ai-chat-input {
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 0.5rem;
        }

        .ai-chat-input input {
            flex: 1;
            padding: 0.5rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
        }

        .ai-chat-input button {
            padding: 0.5rem 1rem;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
        }