
/* Post formatting HEADING QUOTES CODE */
blockquote {
    padding: 12px 20px;
    color: #2e7d32;
    border-left: 5px solid #4caf50;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #e8f5e9 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    font-style: italic;
} 


/* YOUR EXISTING TABLE STYLES (keep them) */
.mainpost-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.mainpost-content table th,
.mainpost-content table td {
    padding: 12px 16px;
    border: 1px solid #c8e6c9;
}

.mainpost-content table th {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: #fff;
    font-weight: 700;
    text-align: left;
}

/* MOBILE FIX — NO WRAPPER NEEDED */
@media (max-width: 768px) {
    .mainpost-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .mainpost-content table thead,
    .mainpost-content table tbody,
    .mainpost-content table th,
    .mainpost-content table td,
    .mainpost-content table tr {
        display: block;
    }

    .mainpost-content table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .mainpost-content table tr {
        border: 1px solid #c8e6c9;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .mainpost-content table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: right;
    }

    .mainpost-content table td:before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #4caf50;
    }
}