.elementor-32388 .elementor-element.elementor-element-bc8e8ae{--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-88fe76b */.custom-post {
    /* Main container: 100% width, flexible layout, no horizontal margin/padding */
    width: 100%;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* Ensure no margin/padding affects the left/right of the main container */
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

/* Style for each section card */
.custom-post .card-section {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 15px 0; /* Vertical margin for spacing, but 0 horizontal margin/padding */
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    /* Enforce 0 margin/padding on left/right for card sections */
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 20px; /* Internal padding */
    padding-right: 20px; /* Internal padding */
}

/* Headings color */
.custom-post h2,
.custom-post h3,
.custom-post h4 {
    color: #003f63;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
}

/* Button styling */
.custom-post .admission-button {
    display: block;
    width: 100%;
    max-width: 300px; /* Max width for better looks on desktop */
    margin: 20px auto;
    padding: 12px 20px;
    background-color: #003f63;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.custom-post .admission-button:hover {
    background-color: #005688;
}

/* Table container for responsiveness */
.custom-post .responsive-table {
    overflow-x: auto;
    width: 100%;
    margin: 20px 0;
}

/* Table styling */
.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin: 0;
}

.custom-post th,
.custom-post td {
    border: 1px solid #dddddd;
    padding: 12px 8px;
    text-align: left;
    word-wrap: break-word; /* Wrap long text naturally */
}

/* Table header styling */
.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
    white-space: normal; /* Ensure text wraps */
}

/* Important Notes Box styling */
.custom-post .important {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.custom-post .important h4 {
    color: #856404; /* Darker color for notes heading */
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* List styling */
.custom-post ul,
.custom-post ol {
    padding-left: 20px;
    margin-top: 10px;
}

.custom-post ul li,
.custom-post ol li {
    margin-bottom: 10px;
}

/* Footer styling */
.custom-post footer {
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9em;
}

.custom-post footer a {
    color: #003f63;
    text-decoration: none;
    margin: 0 10px;
}

/* Mobile-specific adjustments (optional, since default is responsive, but good practice) */
@media (max-width: 600px) {
    .custom-post .card-section {
        padding: 15px;
    }

    .custom-post th,
    .custom-post td {
        font-size: 0.9em;
    }
}/* End custom CSS */