.elementor-27730 .elementor-element.elementor-element-4b52c75{--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-366e006 *//* General Styling for the Post Container */
.custom-post {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%; /* Ensure it's fully responsive */
    overflow-x: hidden; /* Prevent horizontal scrollbars */
}

/* Card Styling for Sections AND Ads */
.custom-post .section-card,
.custom-post .ad-card {
    background-color: white;
    padding: 20px;
    margin: 20px 0; /* 0px left/right margin, 20px top/bottom */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Header Styling */
.custom-post header {
    background-color: #005b96;
    color: white;
    padding: 20px;
    border-radius: 8px; /* Corner round */
    margin-bottom: 20px;
}

.custom-post header h1 {
    margin-top: 0;
    font-size: 1.8em;
}

.custom-post header p {
    margin-bottom: 0;
    font-size: 0.9em;
}

/* Section Headings */
.custom-post h2, .custom-post h3 {
    color: #003f63;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 0;
}

/* Responsive Table Wrapper */
.custom-post .responsive-table {
    overflow-x: auto; /* Ensures table is scrollable on small screens if too wide */
    margin: 15px 0;
}

/* Table Styling */
.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Allows columns to size based on content */
    font-size: 0.9em;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.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: 15px 0;
    color: #856404;
    border-radius: 4px;
}

/* Button Styling */
.custom-post .admission-button {
    display: inline-block;
    background-color: #005b96;
    color: white;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0 20px 0;
    transition: background-color 0.3s;
}

.custom-post .admission-button:hover {
    background-color: #003f63;
}

/* Advertisement Card Styling */
.custom-post .ad-card p {
    margin: 0;
    font-size: 0.8em;
    color: #888;
    text-align: center;
}

/* Table of Contents Styling */
.custom-post #toc {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.custom-post #toc h3 {
    color: #003f63;
    margin-top: 0;
    border-bottom: none;
    font-size: 1.2em;
}

/* List Styling */
.custom-post ul, .custom-post ol {
    padding-left: 20px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .custom-post header h1 {
        font-size: 1.5em;
    }
    .custom-post .section-card {
        padding: 15px;
    }
    .custom-post th, .custom-post td {
        padding: 8px;
        word-break: break-word; /* Ensure long words wrap */
    }
}/* End custom CSS */