.elementor-32023 .elementor-element.elementor-element-6c5dfc4{--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-fed5f47 */.custom-post {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrollbars from the card itself */
}

/* Card Styling for Each Section */
.custom-post .section-card {
    background-color: #ffffff; /* White background for each card */
    margin: 10px 0; /* Vertical margin between cards */
    padding: 0;
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
}

/* Content Padding inside each card, maintaining 0 margin on main container */
.custom-post .section-card > div,
.custom-post .section-card > p,
.custom-post .section-card > h3,
.custom-post .section-card > ul,
.custom-post .section-card > ol,
.custom-post .section-card > .responsive-table {
    padding: 15px 15px;
    margin-bottom: 0; /* Reset default paragraph/list margin bottom to control spacing with card */
}
.custom-post .section-card > p:last-child,
.custom-post .section-card > div:last-child {
    margin-bottom: 0; /* Ensure no extra space at card bottom */
}


.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #e2f0fb;
}

.custom-post a {
    color: #003f63;
    text-decoration: none;
}
.custom-post a:hover {
    text-decoration: underline;
}

/* Responsive Table Styling */
.custom-post .responsive-table {
    overflow-x: auto; /* Allows horizontal scrolling for table on small screens */
}

.custom-post table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin-bottom: 0;
    font-size: 0.95em;
    border: 1px solid #ddd;
}

.custom-post th, .custom-post td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
    word-wrap: break-word; /* Wrap long text naturally */
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
    text-transform: uppercase;
}

.custom-post tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Important Notes Box */
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.custom-post .important h4 {
    color: #003f63;
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Button Container for Centering */
.custom-post .button-center-wrapper {
    text-align: center;
    padding: 15px;
}

/* Call to Action Button */
.custom-post .admission-button {
    display: inline-block; /* Changed to inline-block for better centering */
    width: fit-content !important; /* Added !important to enforce width */
    margin: 10px 0; /* Adjusted vertical margin */
    padding: 12px 25px;
    background-color: #003f63;
    color: #ffffff !important;
    text-align: center;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.custom-post .admission-button:hover {
    background-color: #002a43;
    text-decoration: none;
}

/* List Styling */
.custom-post ul, .custom-post ol {
    padding-left: 20px;
    margin-left: 0;
}
.custom-post li {
    margin-bottom: 8px;
}
.custom-post li p {
    margin: 0;
}

/* Footer Styling */
.custom-post .footer-links {
    padding: 15px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    text-align: center;
}
.custom-post .footer-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 8px 15px;
    border: 1px solid #003f63;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .custom-post th, .custom-post td {
        padding: 10px;
    }
    /* Mobile button fix, allowing 95% width if necessary, but still centered */
    .custom-post .admission-button {
        width: 95% !important; 
        max-width: 300px;
        box-sizing: border-box;
    }
}/* End custom CSS */