/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 16 2025 | 00:19:57 */
/* Apply styles to lists inside articles but NOT inside EZ ToC */
article ul:not(.ez-toc-v2_0_72 ul):not(.ez-toc-wrap-center ul):not(.counter-hierarchy ul):not(.ez-toc-counter ul):not(.ez-toc-custom ul):not(.ez-toc-container-direction ul), 
article ol:not(.ez-toc-v2_0_72 ol):not(.ez-toc-wrap-center ol):not(.counter-hierarchy ol):not(.ez-toc-counter ol):not(.ez-toc-custom ol):not(.ez-toc-container-direction ol) {
    background-color: #f9f9f9;
    border-left: 5px solid #3498db;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 16px 0;
}

/* Style list items but NOT inside EZ ToC */
article ul:not(.ez-toc-v2_0_72 ul):not(.ez-toc-wrap-center ul):not(.counter-hierarchy ul):not(.ez-toc-counter ul):not(.ez-toc-custom ul):not(.ez-toc-container-direction ul) li, 
article ol:not(.ez-toc-v2_0_72 ol):not(.ez-toc-wrap-center ol):not(.counter-hierarchy ol):not(.ez-toc-counter ol):not(.ez-toc-custom ol):not(.ez-toc-container-direction ol) li {
    display: flex;
    align-items: center;
    font-style: italic;
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    padding: 6px 10px;
    position: relative;
    line-height: 1.6;
}

/* Prevent custom bullets inside EZ ToC */
article ul:not(.ez-toc-v2_0_72 ul):not(.ez-toc-wrap-center ul):not(.counter-hierarchy ul):not(.ez-toc-counter ul):not(.ez-toc-custom ul):not(.ez-toc-container-direction ul) li::before, 
article ol:not(.ez-toc-v2_0_72 ol):not(.ez-toc-wrap-center ol):not(.counter-hierarchy ol):not(.ez-toc-counter ol):not(.ez-toc-custom ol):not(.ez-toc-container-direction ol) li::before {
    content: "“";
    font-size: 30px;
    color: #3498db;
    font-weight: bold;
    margin-right: 10px;
}

/* Custom counter styles but NOT for EZ ToC */
article ol:not(.ez-toc-v2_0_72 ol):not(.ez-toc-wrap-center ol):not(.counter-hierarchy ol):not(.ez-toc-counter ol):not(.ez-toc-custom ol):not(.ez-toc-container-direction ol) {
    counter-reset: custom-counter;
}

article ol:not(.ez-toc-v2_0_72 ol):not(.ez-toc-wrap-center ol):not(.counter-hierarchy ol):not(.ez-toc-counter ol):not(.ez-toc-custom ol):not(.ez-toc-container-direction ol) li {
    counter-increment: custom-counter;
}

article ol:not(.ez-toc-v2_0_72 ol):not(.ez-toc-wrap-center ol):not(.counter-hierarchy ol):not(.ez-toc-counter ol):not(.ez-toc-custom ol):not(.ez-toc-container-direction ol) li::after {
    content: counter(custom-counter) ".";
    font-weight: bold;
    margin-left: 6px;
    color: #333;
}
