.elementor-29149 .elementor-element.elementor-element-faa35b6{--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-658e9f6 */.custom-post {
    /* Main Card Container Styling - Acts as the overall wrapper */
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    box-sizing: border-box;
    border: none; /* Removed main border as sections are now cards */
    border-radius: 0;
    overflow: hidden;
}

/* New Card Section Styling */
.custom-post-section {
    background-color: #ffffff; /* White background for the card */
    margin: 15px 0px; /* Vertical margin to separate cards */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow for card effect */
    box-sizing: border-box;
}

.custom-post-header {
    background-color: #005b96;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 1.5em;
    font-weight: bold;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0 0 15px 0; /* Adjust margin for header outside content box */
}

/* Remove padding from content wrapper as padding is now on individual sections */
.custom-post-content {
    padding: 0; 
    box-sizing: border-box;
}

.custom-post h2 {
    color: #003f63;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 0px; /* Removed top margin as section provides spacing */
    font-size: 1.5em;
}

.custom-post h3 {
    color: #003f63;
    margin-top: 20px;
    font-size: 1.2em;
}

/* Responsive Table Styling */
.responsive-table {
    overflow-x: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 600px;
}

.responsive-table th, .responsive-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.responsive-table th {
    background-color: #e2f0fb;
    color: #333;
    font-weight: bold;
    white-space: normal;
}

/* Important Notes Box Styling */
.important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 0.95em;
}

.important strong {
    color: #856404;
}

/* Button Styling */
.custom-post .admission-button {
    display: block;
    width: fit-content;
    margin: 20px 0;
    padding: 12px 25px;
    background-color: #005b96;
    color: #ffffff;
    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;
}

/* Footer Styling */
.custom-post-footer {
    padding: 15px 20px;
    background-color: #f7f7f7;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Mobile adjustments (fully responsive) */
@media (max-width: 600px) {
    .custom-post-section {
        padding: 15px;
        margin: 10px 0px;
    }

    .custom-post h2 {
        font-size: 1.3em;
    }

    .responsive-table table {
        table-layout: auto;
        min-width: 100%;
    }

    .responsive-table th, .responsive-table td {
        padding: 10px;
        font-size: 0.9em;
    }
}/* End custom CSS */