
    /* Chronos-specific styles */
    .chronos-container {
        display: flex;
           flex-direction: column;
        grid-template-columns: 380px 1fr;
        gap: 24px;
        padding: 0;
    }

    /* Upload Section */
    .chronos-upload-section {
        background: white;
        border-radius: 12px;
        padding: 24px;
        border: 1px solid #e5e7eb;
        position: relative;
        top: 88px;
        height: fit-content;
    }
.chronos-scores-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chronos-testability-score {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    background: #e5e7eb;
    color: #374151;
}

.chronos-innovation-badge {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.chronos-innovation-badge.chronos-score-high {
    background: #fef3c7;
    color: #92400e;
}

.chronos-innovation-badge.chronos-score-medium {
    background: #dbeafe;
    color: #1e3a8a;
}

.chronos-innovation-badge.chronos-score-low {
    background: #f3f4f6;
    color: #6b7280;
}

.chronos-historical-source {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    padding: 8px;
    background: #f9fafb;
    border-left: 3px solid #9ca3af;
    margin-top: 4px;
}

.chronos-modern-relevance {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-top: 4px;
}

.chronos-variables-list {
    font-size: 14px;
    color: #4b5563;
    margin-top: 8px;
}

.chronos-variables-list > div {
    margin-bottom: 6px;
    padding-left: 12px;
}

.chronos-variables-list strong {
    color: #374151;
    font-weight: 600;
}

.chronos-mechanism-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 4px;
}

.chronos-hypothesis-section {
    margin-bottom: 16px;
}

.chronos-hypothesis-section-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    font-size: 15px;
}
    .chronos-upload-area {
        border: 2px dashed #cbd5e1;
        border-radius: 12px;
        padding: 40px 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s;
        margin-bottom: 20px;
    }

    .chronos-upload-area:hover {
        border-color: #30c3b6;
        background: #f0f9ff;
    }

    .chronos-upload-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .chronos-upload-title {
        font-size: 16px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 8px;
    }

    .chronos-upload-subtitle {
        font-size: 14px;
        color: #6b7280;
    }

    .chronos-or-divider {
        text-align: center;
        color: #9ca3af;
        font-size: 14px;
        margin: 20px 0;
        position: relative;
    }

    .chronos-or-divider::before,
    .chronos-or-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #e5e7eb;
    }

    .chronos-or-divider::before {
        left: 0;
    }

    .chronos-or-divider::after {
        right: 0;
    }

    .chronos-url-input {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
    }

    .chronos-url-input input {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 14px;
    }

    .chronos-url-input button {
        background: #30c3b6;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }

    .chronos-url-input button:hover {
        background: #26aba2;
    }

    .chronos-recent-analyses {
        border-top: 1px solid #f3f4f6;
        padding-top: 20px;
    }

    .chronos-section-title {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 12px;
    }

    .chronos-recent-item {
        padding: 12px;
        background: #f9fafb;
        border-radius: 8px;
        margin-bottom: 8px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .chronos-recent-item:hover {
        background: #f0f9ff;
    }

    .chronos-recent-title {
        font-size: 13px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 4px;
    }

    .chronos-recent-date {
        font-size: 12px;
        color: #9ca3af;
    }

    /* Results Section */
    .chronos-results-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .chronos-result-card {
        background: white;
        border-radius: 12px;
        padding: 24px;
        border: 1px solid #e5e7eb;
    }

    .chronos-result-header {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 20px;
    }

    .chronos-result-title {
        font-size: 20px;
        font-weight: 700;
        color: #1f2937;
    }

    .chronos-result-meta {
        font-size: 14px;
        color: #6b7280;
        margin-top: 4px;
    }

    .chronos-status-badge {
        background: #d1fae5;
        color: #065f46;
        padding: 6px 14px;
        border-radius: 16px;
        font-size: 12px;
        font-weight: 600;
    }

    /* Document Info */
    .chronos-doc-info {
        background: #f0f9ff;
        padding: 16px;
        border-radius: 8px;
        margin-bottom: 24px;
    }

    .chronos-doc-info-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 14px;
    }

    .chronos-doc-label {
        color: #6b7280;
    }

    .chronos-doc-value {
        color: #1f2937;
        font-weight: 600;
    }

    /* Hypotheses */
    .chronos-hypotheses-section {
        margin-top: 24px;
    }

    .chronos-hypothesis-card {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-left: 4px solid #30c3b6;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 16px;
    }

    .chronos-hypothesis-header {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 12px;
    }

    .chronos-hypothesis-number {
        background: #30c3b6;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
    }

    .chronos-priority-score {
        background: white;
        border: 1px solid #e5e7eb;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
    }

    .chronos-score-high {
        color: #10b981;
        border-color: #10b981;
        background: #d1fae5;
    }

    .chronos-score-medium {
        color: #f59e0b;
        border-color: #f59e0b;
        background: #fef3c7;
    }

    .chronos-hypothesis-title {
        font-size: 16px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 12px;
    }

    .chronos-hypothesis-content {
        font-size: 14px;
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .chronos-hypothesis-section {
        margin-bottom: 12px;
    }

    .chronos-hypothesis-section-title {
        font-size: 13px;
        font-weight: 600;
        color: #6b7280;
        margin-bottom: 6px;
    }

    .chronos-hypothesis-actions {
        display: flex;
        gap: 8px;
        padding-top: 16px;
        border-top: 1px solid #e5e7eb;
        flex-wrap: wrap;
    }

    .chronos-action-btn {
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all 0.2s;
    }

    .chronos-action-primary {
        background: #30c3b6;
        color: white;
    }

    .chronos-action-primary:hover {
        background: #26aba2;
    }

    .chronos-action-secondary {
        background: #f3f4f6;
        color: #4b5563;
    }

    .chronos-action-secondary:hover {
        background: #e5e7eb;
    }

    .chronos-methodology {
        padding: 16px;
        background: #f9fafb;
        border-radius: 8px;
        margin-top: 24px;
    }

    .chronos-methodology-text {
        font-size: 13px;
        color: #6b7280;
        line-height: 1.5;
    }

    /* Empty State */
    .chronos-empty-state {
        text-align: center;
        padding: 60px 20px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
    }

    .chronos-empty-icon {
        font-size: 64px;
        margin-bottom: 16px;
        opacity: 0.3;
    }

    .chronos-empty-title {
        font-size: 20px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 8px;
    }

    .chronos-empty-text {
        color: #6b7280;
    }

    @media (max-width: 1024px) {
        .chronos-container {
            grid-template-columns: 1fr;
        }

        .chronos-upload-section {
            position: relative;
            top: 0;
        }
    }