.report-workspace {
    display: flex;
    height: calc(100% - 43px);
    gap: 8px;
    padding: 8px;
}

.report-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--hud-border);
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.pane-header {
    background: #fff7d4;
    padding: 3px 10px;
    border-bottom: 0.5px solid #cecece;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    color: #333;
}

#report-editor {
    flex: 1;
    border: none;
    padding: 10px;
    resize: none;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    outline: none;
}

#report-preview {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Markdown Styling */
.markdown-body h1 {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.markdown-body code {
    background: #f6f8fa;
    padding: 2px 4px;
    border-radius: 3px;
}
