.elementor-31597 .elementor-element.elementor-element-78240b8{--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-3fedd8d */.custom-post {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%; /* Ensure responsiveness */
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

.custom-post * {
    box-sizing: border-box;
}

/* Card-based section styling */
.custom-post section {
    margin: 15px 0px; /* Left and right margin 0px is for the main container, sections can have vertical margin */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Header Styling */
.custom-post .header-card {
    background-color: #005b96;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0; /* Corner round */
    margin: 0;
    box-shadow: none;
}

/* Heading Styling */
.custom-post h1 {
    font-size: 1.5em;
    margin: 0;
    padding: 0;
}

.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 20px;
    font-weight: 600;
}

.custom-post h2 {
    font-size: 1.4em;
}

/* Table of Contents */
.custom-post .toc {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.custom-post .toc h4 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
}

.custom-post .toc ul {
    list-style: none;
    padding: 0;
}

.custom-post .toc li a {
    color: #005b96;
    text-decoration: none;
    padding: 3px 0;
    display: block;
}

/* Responsive Table Styling */
.custom-post .responsive-table {
    overflow-x: auto; /* For table scroll on very small screens if necessary */
    width: 100%;
    margin: 20px 0;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 600px; /* Set a minimum width for better mobile experience */
}

.custom-post th, .custom-post td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    word-wrap: break-word; /* Wrap long text naturally */
}

.custom-post thead th {
    background-color: #e2f0fb; /* Table headers color */
    color: #003f63;
    font-weight: bold;
}

.custom-post tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Button Styling */
.custom-post .admission-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    margin: 20px 0;
    background-color: #ff6f61; /* Action color */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-post .admission-button:hover {
    background-color: #e55c50;
}

/* Important Notes Box Styling */
.custom-post .important {
    background-color: #fff3cd; /* Notes box background */
    border: 1px solid #ffca2c;
    border-left: 5px solid #ffca2c; /* Notes box border-left */
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.custom-post .important p:last-child {
    margin-bottom: 0;
}

/* List Styling */
.custom-post ul, .custom-post ol {
    margin-left: 20px;
    padding-left: 0;
}

/* Footer Styling */
.custom-post footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.custom-post footer a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 600px) {
    .custom-post section {
        padding: 15px;
        margin: 10px 0px;
    }
    .custom-post h2 {
        font-size: 1.3em;
    }
    .custom-post th, .custom-post td {
        padding: 8px 10px;
    }
}/* End custom CSS */