#content-core table.listing td,
#content-core table.listing th{
    border: none;
}


#content-core [id^="parent-fieldname-text-"] {
    table.listing{
        margin: auto;
        min-width:300px;
        max-width: 1200px;
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
        border-radius: 16px;
        overflow: hidden;
    }

    /* Table Header */
    table.listing th{
        background: #2E7D32;
        color: white;
        padding: 8px 30px;
        text-align: center;
        letter-spacing: 1px;
    }

    table.listing h2 {
        color: white;
        font-size: 1.5em;

    }

    table.listing tbody tr td {
        padding: 16px 25px;
        color: #2d3748;
        font-size: 15px;
    }

    table.listing tbody tr{
        text-align:center;
        background-color: #e8f5e9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
    }

    table.listing a:link,
    table.listing a:visited{
    color:#29a56d;
    }    

    /* Odd */
    table.listing tr.odd td{
        background-color: #ffffff;
        transition: all 0.25s ease;
    }

    /* Even */
    table.listing tr.even td{
        background-color: #f8fff8;
        transition: all 0.25s ease;
    }

}

@media (max-width: 768px) {
    #content-core [id^="parent-fieldname-text-"]{
        table.listing{
            margin-bottom: 15px;
        }
        
        .listing {
            border-collapse:collapse;
            width:100%
        }
    
        .listing tr.mobile-pair {
            display:flex;
            justify-content:space-between;
            border-bottom:1px solid #eee;
    }
}