/**
 * @description Test harness styles for ipynb-viewer block
 * @version 1.0
 * @author Tom Cranstoun
 * @mx:status active
 * @mx:contentType stylesheet
 */

/* Test-specific styling */
body {
    padding: 2rem;
    background: #f5f5f5;
}

.test-content {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.test-section {
    margin: 2rem 0;
    padding: 1rem;
    border: 2px solid #007bff;
    border-radius: 4px;
    background: #f8f9fa;
}

.test-section h2 {
    margin-top: 0;
    color: #007bff;
}

.test-info {
    background: #e7f3ff;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.test-info h3 {
    margin-top: 0;
}

.feature-list {
    background: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.feature-list h4 {
    margin-top: 0;
    color: #0066cc;
}

.feature-list ul {
    margin-bottom: 0;
}

/* EDS pattern - ensure body appears */
body.appear {
    display: block;
}
/* Converted from inline style= attributes */
.test-inline-1 { color: red; padding: 2rem; }

