.elementor-31829 .elementor-element.elementor-element-bc56343{--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 );}/* Start custom CSS for text-editor, class: .elementor-element-0994a4e *//*
    Base container for the entire post.
    Ensures 0px left/right margin/padding on the main wrapper.
*/
.custom-post {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    overflow-x: hidden;
}

/* Card Section Styling */
.custom-post .card {
    background-color: white;
    /* Card has 0 horizontal margin/padding as per request for main element */
    margin: 15px 0px; /* Vertical margin for separation */
    padding: 0; /* Padding is applied to inner elements */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Inner padding for content inside the card */
.custom-post .card-content {
    padding: 15px;
}

/* Header Styling - Spans full width, outside the cards */
.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 15px 20px;
    margin: 0; /* Ensure no margin interferes with full width */
    border-radius: 5px 5px 0 0;
    font-size: 1.8em;
    text-align: center;
}

/* Section Headings Styling - Inside the cards */
.custom-post h2 {
    color: #003f63;
    border-bottom: 2px solid #005b96;
    padding-bottom: 5px;
    margin-top: 0; /* Reset top margin as card provides spacing */
    margin-bottom: 15px;
    font-size: 1.5em;
    padding-left: 0; /* Adjusted for card-content padding */
    padding-right: 0;
}

/* General Text and List Styling - Inside card-content */
.custom-post p, .custom-post ul, .custom-post ol {
    margin-bottom: 15px;
    padding: 0; /* Resetting padding, card-content handles spacing */
}

/* Table of Contents Styling (Also a Card) */
.custom-post .toc .card-content {
    padding: 15px;
}
.custom-post .toc ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.custom-post .toc li a {
    color: #005b96;
    text-decoration: none;
}
.custom-post .toc li {
    padding: 5px 0;
}

/* Table Styling */
.custom-post .responsive-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 12px 8px;
    text-align: left;
    word-wrap: break-word;
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

/* Important Notes Box */
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0; /* Vertical margin for separation */
    border-radius: 3px;
    font-style: italic;
}

/* Admission Button */
.custom-post .admission-button {
    display: block;
    width: fit-content;
    margin: 15px 0 25px 0; /* Use 0 horizontal margin to center if needed, or stick left */
    padding: 12px 25px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.custom-post .admission-button:hover {
    background-color: #003f63;
}

/* Footer Styling - Spans full width, outside the cards */
.custom-post footer {
    text-align: center;
    padding: 15px 0; /* Horizontal padding 0 */
    margin-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}

.custom-post footer p {
    padding: 0 15px; /* Add inner padding for text */
}

.custom-post footer a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
}/* End custom CSS */