.wp-block-preformatted {
    background-color: var(--healththeme-background-color, #f9f9f9);
    color: #333;
    border-left: 4px solid var(--systemoun-strong-color, #19744C);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wp-block-preformatted code {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--systemoun-strong-color, #19744C);
    padding: 2px 4px;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
}

.wp-block-preformatted br {
    content: "\A";
    white-space: pre;
}

/* Mobile styles */
@media (max-width: 800px) {
    .wp-block-preformatted {
        padding: 15px;
        font-size: 14px;
    }
}