/* === FULL POST STYLES – MOBILE + DESKTOP PERFECT === */

blockquote {
    padding: 14px 18px;
    margin: 1.4rem 0;
    background: linear-gradient(90deg, #e8f5e9 0%, transparent 30%);
    border-left: 5px solid #4caf50;
    border-radius: 0 8px 8px 0;
    color: #2e7d32;
    font-style: italic;
    font-size: 1.02rem;
}

strong {
    font-weight: 700;
    color: #1b5e20;
}

/* Inline code – green text only */
code:not(pre > code) {
    font-family: "JetBrains Mono", Consolas, monospace;
    font-size: 0.96em;
    font-weight: 530;
    color: #16a34a;
}

/* Code blocks – dark green + light text (perfect contrast) */
pre {
    margin: 1.4rem 0 !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(34,197,94,.18);
}

pre > code {
    display: block !important;
    font-family: "JetBrains Mono", Consolas, monospace;
    font-size: 0.94rem !important;
    line-height: 1.7;
    color: #ecfdf5 !important;
    background: #166534 !important;
    padding: 1.2rem 1.4rem !important;
    border: 2px solid #4caf50;
    border-radius: 14px;
    overflow-x: auto;
}

/* Headings */
h1 {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 1.6rem 0 1rem;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 3px solid #81c784;
    padding-bottom: 0.4rem;
}
h2 { font-size: 1.6rem;  margin: 1.4rem 0 .8rem; }
h3 { font-size: 1.4rem;  margin: 1.2rem 0 .7rem; }

/* YOUR ORIGINAL TABLE STYLES – kept 100% + tiny mobile polish */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.4rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(76,175,80,.12);
}
table th, table td {
    padding: 12px 16px;
    border: 1px solid #c8e6c9;
    text-align: left;
}
table th {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
    font-weight: 700;
}

/* Mobile responsive tables – exactly your version, just cleaned */
@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.35rem; }
    pre > code { font-size: 0.89rem !important; padding: 1rem !important; }

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    table thead, table tbody, table th, table td, table tr { display: block; }
    table thead tr { position: absolute; top: -9999px; left: -9999px; }
    table tr {
        border: 1px solid #c8e6c9;
        margin-bottom: 12px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }
    table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }
    table td:before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        width: 45%;
        font-weight: bold;
        color: #4caf50;
        text-align: left;
    }
}