.elementor-31923 .elementor-element.elementor-element-633845c{--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-f29fa7e */<style>
    /* Global Reset and Base Styles for .custom-post */
    .custom-post {
        max-width: 100%;
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden; /* Prevent horizontal scrollbars */
    }

    /* Card Styling */
    .custom-post .card {
        margin-bottom: 15px; /* Ensures 0 left/right margin on the card itself */
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        padding: 0;
        background-color: white; /* Explicitly set white background for all cards */
    }

    /* Section Heading Styling */
    .custom-post .section-title {
        background-color: #f7f7f7;
        border-bottom: 2px solid #003f63;
        padding: 10px 20px;
        font-size: 1.4em;
        color: #003f63;
        margin: 0;
        border-radius: 0;
        line-height: 1.3;
    }

    /* Content Area inside cards */
    .custom-post .card-content {
        padding: 20px;
    }

    /* Responsive Table Wrapper */
    .custom-post .responsive-table {
        overflow-x: auto;
        width: 100%;
    }

    .custom-post table {
        width: 100%;
        border-collapse: collapse;
        table-layout: auto;
    }

    .custom-post th, .custom-post td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
        vertical-align: top;
    }

    /* Table Header Styling */
    .custom-post th {
        background-color: #e2f0fb;
        color: #003f63;
        font-weight: bold;
    }

    /* Alternating row colors for readability */
    .custom-post tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    /* Button Styling */
    .custom-post .admission-button {
        display: inline-block;
        background-color: #005b96; /* Using a blue tone from the theme for the button */
        color: white;
        padding: 12px 25px;
        margin: 20px 0 0 0;
        text-align: center;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .custom-post .admission-button:hover {
        background-color: #003f63;
    }

    /* List Styling */
    .custom-post ul, .custom-post ol {
        margin-left: 20px;
        padding: 0;
    }

    .custom-post ul li, .custom-post ol li {
        margin-bottom: 10px;
    }

    /* Important Note Box Styling */
    .custom-post .important {
        background-color: #fff3cd;
        border-left: 5px solid #ffca2c;
        padding: 15px;
        margin: 20px 0;
        color: #664d03;
        border-radius: 4px;
    }

    /* Table of Contents Styling */
    .custom-post .toc-card ul {
        list-style: none;
        margin: 0;
        padding: 10px 20px;
    }

    .custom-post .toc-card ul li a {
        color: #005b96;
        text-decoration: none;
        font-weight: 500;
    }

    .custom-post .toc-card ul li a:hover {
        text-decoration: underline;
    }

    /* Media Queries for Mobile Responsiveness */
    @media (max-width: 600px) {
        .custom-post .section-title {
            font-size: 1.2em;
            padding: 10px 15px;
        }

        .custom-post th, .custom-post td {
            padding: 8px 10px;
            font-size: 0.9em;
        }

        .custom-post .card-content {
            padding: 15px;
        }
    }
</style>/* End custom CSS */