.elementor-1495 .elementor-element.elementor-element-64c40efa{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}@media(max-width:767px){.elementor-1495 .elementor-element.elementor-element-64c40efa{--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}}@media(min-width:768px){.elementor-1495 .elementor-element.elementor-element-64c40efa{--content-width:1031px;}}/* Start custom CSS for text-editor, class: .elementor-element-1329083 *//* Base Styles for Post Content */
.entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--theme-text-color, #333);
    max-width: 100%;
    overflow-x: auto;
}

/* Text Elements */
.entry-content p {
    margin-bottom: 1.5em;
    opacity: 0;
    animation: gentleFadeIn 0.4s ease-out forwards;
    animation-delay: 0.1s;
}

/* Headings */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--theme-headings-color, #222);
    margin: 1.5em 0 1em;
    position: relative;
}

.entry-content h2 {
    font-size: 1.7rem;
    padding-bottom: 0.4em;
    border-bottom: 2px solid var(--theme-accent-color, #3eaf7c);
}

.entry-content h3 {
    font-size: 1.45rem;
}

.entry-content h4 {
    font-size: 1.25rem;
}

/* Enhanced List Styles with Proper Bullets */
.entry-content ul,
.entry-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
    opacity: 0;
    animation: gentleFadeIn 0.3s ease-out forwards;
    animation-delay: 0.15s;
}

.entry-content ul {
    list-style-type: none; /* Remove default bullets */
}

.entry-content ul li {
    position: relative;
    margin-bottom: 0.8em;
    padding-left: 1.2em;
}

.entry-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    background-color: var(--theme-accent-color, #3eaf7c);
    border-radius: 50%;
    transform: translateY(-50%);
}

.entry-content ol {
    list-style-type: decimal;
    list-style-position: outside;
}

.entry-content ol li {
    margin-bottom: 0.6em;
    padding-left: 0.5em;
}

/* Nested List Styles */
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
    margin: 0.5em 0 0.5em 1.5em;
}

.entry-content ul ul li::before {
    background-color: var(--theme-palette-color-2, #666);
    width: 5px;
    height: 5px;
}

.entry-content ol ol {
    list-style-type: lower-alpha;
}

.entry-content ol ol ol {
    list-style-type: lower-roman;
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8em 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    animation: gentleFadeIn 0.3s ease-out forwards;
    animation-delay: 0.2s;
}

/* [Rest of your existing table styles...] */

/* Tablet View (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .entry-content table {
        font-size: 0.95rem;
    }
    
    .entry-content th,
    .entry-content td {
        padding: 10px 12px;
    }
}

/* Mobile-specific table styles (under 768px) */
@media (max-width: 767px) {
    .entry-content table {
        display: block;
        width: 100%;
        font-size: 0.9rem;
    }
    
    /* [Rest of your existing mobile table styles...] */
}

/* [Rest of your existing CSS...] */

/* Toned-Down Animations */
@keyframes gentleFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modern Table Design for Blocksy Theme */
.wp-block-table,
.entry-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    font-size: 0.95em;
    opacity: 0;
    transform: translateY(10px);
    animation: tableFadeIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: 0.2s;
    background: var(--theme-palette-color-8, #fff);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

@keyframes tableFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wp-block-table table,
.entry-content table {
    width: 100%;
    margin: 0;
}

.wp-block-table thead,
.entry-content thead {
    background: linear-gradient(135deg, 
        var(--theme-accent-color, #3eaf7c) 0%, 
        var(--theme-palette-color-3, #2d8b60) 100%);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-block-table th,
.entry-content th {
    padding: 15px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85em;
    position: relative;
    transition: all 0.3s ease;
}

.wp-block-table th:not(:last-child),
.entry-content th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.wp-block-table td,
.entry-content td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--theme-border-color, #eee);
    transition: all 0.2s ease;
    position: relative;
}

.wp-block-table tr:last-child td,
.entry-content tr:last-child td {
    border-bottom: none;
}

.wp-block-table tbody tr:hover td,
.entry-content tbody tr:hover td {
    background-color: rgba(62, 175, 124, 0.03);
}

.wp-block-table tbody tr:hover td:first-child,
.entry-content tbody tr:hover td:first-child {
    border-left: 3px solid var(--theme-accent-color, #3eaf7c);
}

/* Zebra striping for better readability */
.wp-block-table tbody tr:nth-child(even),
.entry-content tbody tr:nth-child(even) {
    background-color: var(--theme-palette-color-8, #f9f9f9);
}

/* Hover effect for cells */
.wp-block-table td:hover::after,
.entry-content td:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 175, 124, 0.05);
    z-index: -1;
}

/* Responsive adjustments for tablet */
@media (max-width: 1024px) {
    .wp-block-table,
    .entry-content table {
        font-size: 0.9em;
    }
    
    .wp-block-table th,
    .wp-block-table td,
    .entry-content th,
    .entry-content td {
        padding: 12px 15px;
    }
}

/* Mobile responsive table */
@media (max-width: 767px) {
    .wp-block-table,
    .entry-content table {
        display: block;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .wp-block-table thead,
    .entry-content thead {
        display: none;
    }
    
    .wp-block-table tbody,
    .wp-block-table tr,
    .wp-block-table td,
    .entry-content tbody,
    .entry-content tr,
    .entry-content td {
        display: block;
        width: 100%;
    }
    
    .wp-block-table tr,
    .entry-content tr {
        margin-bottom: 1.5rem;
        border: 1px solid var(--theme-border-color, #eee);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        padding: 0;
    }
    
    .wp-block-table td,
    .entry-content td {
        padding: 12px 15px 12px 45%;
        text-align: right;
        position: relative;
        border-bottom: 1px solid var(--theme-border-color, #f0f0f0);
    }
    
    .wp-block-table td:before,
    .entry-content td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: var(--theme-accent-color, #3eaf7c);
        width: 40%;
        text-align: left;
        font-size: 0.85em;
    }
    
    .wp-block-table td:last-child,
    .entry-content td:last-child {
        border-bottom: none;
    }
    
    /* Remove hover effects on mobile */
    .wp-block-table tbody tr:hover td,
    .entry-content tbody tr:hover td {
        background-color: transparent;
        border-left: none;
    }
    
    .wp-block-table td:hover::after,
    .entry-content td:hover::after {
        display: none;
    }
}

/* Special styling for table captions */
.wp-block-table figcaption,
.entry-content table + figcaption {
    text-align: center;
    font-size: 0.85em;
    color: var(--theme-palette-color-4, #666);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}/* End custom CSS */