.elementor-29211 .elementor-element.elementor-element-9b3dd58{--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-20aa272 *//* Card Generation CSS */

.custom-post {
    /* Main Card Wrapper: Ensures 0px margin/padding constraint is met for the container */
    margin: 0;
    padding: 0;
    border: none; /* Removed single border for all cards */
    border-radius: 0;
    box-shadow: none; /* Removed single shadow for all cards */
    overflow: hidden;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.custom-post-header {
    background-color: #005b96; /* Header background: #005b96 */
    color: white;
    padding: 20px;
    border-radius: 0; /* Ensures square corners */
    text-align: center;
}

.custom-post-header h1 {
    margin: 0;
    font-size: 1.8em;
}

/* Remove horizontal padding from content wrapper so cards can span full width */
.custom-post-content {
    padding: 10px 0; 
}

/* New: Individual Card Section Styling */
.custom-section-card {
    border-radius: 8px !Important;
    background-color: white; /* White background for each section card */
    border: 1px solid #ddd; /* Separate border for each card */
    /* Increased vertical margin (20px) for separation, zero horizontal margin (0) as requested */
    margin: 20px 0; 
    padding: 20px; /* Internal padding for content spacing */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* Separate shadow for each card */
    overflow: hidden;
    border-radius: 0; /* Square corners to align with full width design */
}

/* Section Headings Style */
.custom-section-card h2,
.custom-section-card h3,
.custom-section-card h4 {
    color: #003f63; /* Section headings: #003f63 */
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 5px;
    margin-top: 5px; 
    margin-bottom: 15px;
}

/* Paragraph and Text Styling */
.custom-section-card p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Table of Contents Styling */
.toc-box {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.toc-box ul {
    list-style-type: none;
    padding-left: 0;
}

.toc-box li a {
    text-decoration: none;
    color: #005b96;
}

/* Button Styling */
.admission-button {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 12px 20px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.admission-button:hover {
    background-color: #003f63;
}

/* Responsive Table Wrapper */
.responsive-table {
    overflow-x: auto; /* Handles small screen table overflow */
    margin-bottom: 20px;
}

/* Table Styling */
.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin: 0;
    padding: 0;
}

.custom-post th,
.custom-post td {
    border: 1px solid #dee2e6;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

/* Table Headers Style */
.custom-post th {
    background-color: #e2f0fb; /* Table headers: #e2f0fb */
    color: #003f63;
    font-weight: bold;
}

/* List Styling (Eligibility/Process) */
.custom-section-card ul,
.custom-section-card ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.custom-section-card ul li,
.custom-section-card ol li {
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Important Notes Box (Uses specific color theme) */
.important {
    border: 1px solid #ffca2c;
    border-left: 5px solid #ffca2c; /* Border-left: #ffca2c */
    background-color: #fff3cd; /* Notes box: #fff3cd */
    padding: 15px;
    margin-top: 30px;
    margin-bottom: 10px; 
    border-radius: 4px;
    color: #856404;
    font-weight: 500;
}

.important h4 {
    color: #856404;
    margin-top: 0;
}

/* Footer Styling */
.custom-post-footer {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9em;
}

.custom-post-footer a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
}

.custom-post-footer a:hover {
    text-decoration: underline;
}/* End custom CSS */