.elementor-31888 .elementor-element.elementor-element-c32a8e3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-31888 .elementor-element.elementor-element-2f1d2cd > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-2f1d2cd */.custom-post {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0px;
    padding: 0px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Card Styling */
.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Header/Title Styling */
.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 10px 20px;
    
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 1.8em;
    text-align: center;
}

/* Section Headings */
.custom-post h2,
.custom-post h3 {
    color: #003f63;
    border-bottom: 2px solid #003f63;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Responsive Table Container */
.responsive-table {
    overflow-x: auto;
    margin: 15px 0;
}

/* Table Styling */
.custom-post table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.custom-post th,
.custom-post td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    word-break: break-word; /* Ensure long words wrap */
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

/* Important Notes Box */
.important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

/* List Styling */
.custom-post ul,
.custom-post ol {
    margin: 15px 0;
    padding-left: 25px;
}

.custom-post li {
    margin-bottom: 8px;
}

/* Button Styling */
.custom-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 10px 15px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #003f63;
}

/* Table of Contents Styling */
.toc {
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}

.toc h3 {
    margin-top: 0;
    border-bottom: none;
    font-size: 1.2em;
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li a {
    color: #005b96;
    text-decoration: none;
}

.toc li a:hover {
    text-decoration: underline;
}

/* Utility for wrapping text in tables */
.wrap-text {
    white-space: normal;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 600px) {
    .card {
        padding: 15px;
        margin: 10px 0;
    }
    
    .custom-post h1 {
        font-size: 1.5em;
        padding: 15px;
        margin: 0 -15px 15px -15px;
    }

    .custom-post th,
    .custom-post td {
        padding: 8px;
    }

    .responsive-table table {
        /* Force tables to scroll horizontally on small screens */
        min-width: 500px; 
    }
}/* End custom CSS */