/* Code Block Styles for CKEditor Content */

/* Block code (code blocks) */
pre {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-left: 3px solid #4CAF50;
    padding: 1em;
    margin: 1.5em 0;
    overflow-x: auto;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
    line-height: 1.5;
}

pre code {
    background-color: transparent;
    padding: 0;
    border: none;
    font-size: inherit;
    color: #333;
}

/* Inline code */
code {
    background-color: #f0f0f0;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    color: #d63384;
    border: 1px solid #e0e0e0;
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
    pre {
        padding: 0.75em;
        font-size: 0.85em;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

/* Print styles */
@media print {
    pre {
        border: 2px solid #333;
        page-break-inside: avoid;
        background-color: #fff !important;
        color: #000 !important;
    }
    
    code {
        background-color: #f5f5f5 !important;
        color: #000 !important;
    }
}

