/* Bug Reports Styling */

.bug-report-text {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: left;
    font-size: 0.95rem;
    padding: 15px;
    background-color: var(--dark-card) !important;
}

/* Make sure code or monospace text is readable */
.bug-report-text code, 
.bug-report-text pre {
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Format lists properly */
.bug-report-text ul, 
.bug-report-text ol {
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Make sure paragraph spacing is good */
.bug-report-text p {
    margin-bottom: 10px;
}

/* Keep our bg-light class consistent with dark theme */
.bg-light.bug-report-text {
    background-color: var(--dark-card) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}