.elementor-31686 .elementor-element.elementor-element-39e5714{--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-3bfb162 */.custom-post {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
}

.custom-post * {
    box-sizing: border-box;
}

/* Card Styling: Each section is a card */
.custom-post > div {
    margin: 15px 0; /* Add vertical spacing between cards */
    padding: 0;
    border: 1px solid #ddd; /* Subtle border to define the card */
    border-radius: 8px; /* New: Rounded corners for the card */
    overflow: hidden; /* Ensures child elements (like tables) don't break rounded corners */
    background-color: white; /* Explicitly set white background */
}

/* Header Styling: Note this is outside the first content div, but styled to match */
.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 15px 10px;
    margin: 0 0 15px 0; /* Margin at the bottom to separate from the next card */
    border-radius: 8px; /* New: Rounded corners for the title block */
    font-size: 1.8em;
    text-align: center;
}

/* Section Headings */
.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    padding: 10px 10px 5px 10px;
    margin: 10px 0 5px 0;
    border-bottom: 2px solid #e2f0fb;
}

.custom-post h2 {
    font-size: 1.5em;
}

.custom-post h3 {
    font-size: 1.3em;
}

/* Paragraph and List Styling */
.custom-post p, .custom-post ul, .custom-post ol {
    padding: 0 10px;
    margin: 10px 0;
    text-align: justify;
}

.custom-post ul, .custom-post ol {
    padding-left: 30px;
}

.custom-post li {
    margin-bottom: 5px;
}

/* Responsive Table Container */
.responsive-table {
    overflow-x: auto;
    margin: 10px 0;
    padding: 0 10px;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin: 0;
}

.custom-post th, .custom-post td {
    padding: 12px 10px;
    border: 1px solid #ddd;
    text-align: left;
    word-wrap: break-word;
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

/* Important Notes Box (Internal styling for the note block) */
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px 10px;
    margin: 10px;
    border-radius: 4px; /* Slight rounding for the inner box */
}

.custom-post .important h4 {
    color: #003f63;
    margin-top: 0;
    padding: 0;
    border-bottom: none;
}

/* Button Styling */
.custom-post .admission-button {
    display: block;
    width: 95%;
    max-width: 400px;
    margin: 15px auto;
    padding: 12px 20px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-post .admission-button:hover {
    background-color: #003f63;
}

/* Footer Links (styled as a card) */
.custom-post .footer-links {
    text-align: center;
    padding: 15px 10px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px; /* Rounded corners */
    margin: 15px 0;
}

.custom-post .footer-links a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
}

/* Table of Contents Styling (styled as a card) */
.custom-post #toc {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 15px 0;
    background-color: #f9f9f9;
    border-radius: 8px; /* Rounded corners */
}

.custom-post #toc h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 0 0 5px 0;
}

.custom-post #toc ul {
    list-style-type: none;
    padding: 0 10px;
    margin: 0;
}

.custom-post #toc li a {
    text-decoration: none;
    color: #003f63;
    display: block;
    padding: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .custom-post h1 {
        font-size: 1.5em;
    }

    .custom-post th, .custom-post td {
        padding: 8px 5px;
        font-size: 0.9em;
    }
}/* End custom CSS */