.elementor-29161 .elementor-element.elementor-element-0de858e{--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-29161 .elementor-element.elementor-element-672fbcb > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-672fbcb */.custom-post {
    /* Main Container Styling */
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevents container-level scrollbars */
    box-sizing: border-box;
}

.custom-post * {
    box-sizing: border-box;
}

/* Header Styling - Top of the container, not a separate card */
.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 20px 15px;
    margin: 0;
    border-radius: 8px 8px 0 0;
    font-size: 1.8em;
    text-align: center;
}

/* Card Styling for Sections (including the 'important' box) */
.custom-post > section,
.custom-post .important {
    background-color: white; /* Explicit white background for the card */
    margin: 0 0 20px 0; /* 0px left/right margin/padding as requested, 20px bottom margin for separation */
    padding: 0;
    border: 1px solid #e0e0e0; /* Subtle border to delineate the card */
    border-radius: 4px; /* Rounded corners for card look */
    clear: both;
    overflow: hidden; /* Contains inner content like tables */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Soft shadow for lift */
}

/* Special styling for the Important Notes box */
.custom-post .important {
    border-left: 5px solid #ffca2c;
    border: 1px solid #ffca2c; /* Adjusting the border to be more like a card with a strong left accent */
    background-color: #fff3cd; /* Notes box background color */
    box-shadow: none; /* Removing soft shadow from notes box */
}

.custom-post .important h4 {
    color: #856404;
    padding: 15px 15px 5px 15px; /* Added padding to h4 to separate it from the top */
    border: none;
    font-size: 1.2em;
    margin-bottom: 0;
}


/* Inner Padding for Content (0px side margin on card structure maintained) */
.custom-post .content-padding {
    padding: 15px; /* General padding for text and lists inside the card */
    clear: both;
}

/* Section Headings inside Cards */
.custom-post h2,
.custom-post h3,
.custom-post h4 {
    color: #003f63;
    padding: 10px 15px;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
    border-bottom: 2px solid #eee;
}
.custom-post h2 {
    /* Override to ensure H2/H3 use section color but retain card padding/margin rules */
    font-size: 1.6em;
}


/* Table of Contents specific styling within the card */
.custom-post .toc {
    background-color: #f8f8f8; /* TOC background distinct inside the white card */
    border: 1px solid #ddd;
    margin: 0 15px 15px 15px;
    padding: 15px;
    border-radius: 4px;
}

.custom-post .toc h3 {
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    border: none;
    font-size: 1.2em;
}
.custom-post .toc ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.custom-post .toc a {
    padding: 4px 0;
}


/* Responsive Table Wrapper */
.custom-post .responsive-table {
    overflow-x: auto; /* Allows horizontal scroll for very narrow screens */
    padding: 0 15px 15px 15px; /* Padding for the table wrapper itself */
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin-bottom: 0; /* Removing margin to fit within the card padding flow */
}

/* Table Headers (TH) */
.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    padding: 12px 8px;
    text-align: left;
    border: 1px solid #ccc;
    font-size: 0.9em;
}

/* Table Data (TD) */
.custom-post td {
    padding: 10px 8px;
    border: 1px solid #eee;
    vertical-align: top;
    font-size: 0.9em;
}

.custom-post tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Button Styling - Keep full width within its container padding */
.custom-post .admission-button {
    display: block;
    width: calc(100% - 30px); /* 100% minus 15px left/right padding */
    max-width: 400px;
    margin: 15px auto 30px auto;
    padding: 15px 10px;
    background-color: #ffca2c;
    color: #003f63;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.1em;
    border: 1px solid #ffca2c;
}

.custom-post .admission-button:hover {
    background-color: #ff9900;
}

/* Footer Styling */
.custom-post footer {
    background-color: #f4f4f4;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #ccc;
}

.custom-post footer a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
}/* End custom CSS */