.elementor-32398 .elementor-element.elementor-element-0b897ec{--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-c1d5027 */.custom-post {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    overflow-x: hidden;
}

/* Section Card Styling */
/* Enforcing user requirements: left and right margin/padding 0px for the container */
.section-card {
    margin: 15px 0; /* Top/bottom margin for separation */
    margin-left: 0;
    margin-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px; /* Internal padding for content readability */
    padding-right: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

/* Headings Styling */
.custom-post h1 {
    color: #003f63;
    margin-bottom: 20px;
}
.custom-post h2, 
.custom-post h3, 
.custom-post h4 {
    color: #003f63; /* Section headings color */
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Button Styling */
.custom-post .admission-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    background-color: #003f63;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.custom-post .admission-button:hover {
    background-color: #005a8d;
}

/* Responsive Table Styling */
.responsive-table {
    overflow-x: auto; /* Allows horizontal scroll for the table itself on small screens */
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.responsive-table table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.responsive-table th, 
.responsive-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    word-wrap: break-word; /* Wrap long text naturally */
    hyphens: auto; /* Helps with long words on small screens */
}

.responsive-table th {
    background-color: #e2f0fb; /* Table headers color */
    color: #003f63;
    font-weight: bold;
}

/* Important Notes Box Styling */
.custom-post .important {
    background-color: #fff3cd; /* Notes box background */
    border-left: 5px solid #ffca2c; /* Notes box border-left */
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-style: italic;
    color: #856404; /* Darker text for readability */
}

/* List Styling */
.custom-post ul, 
.custom-post ol {
    margin: 15px 0 15px 20px;
    padding: 0;
}
.custom-post ul li, 
.custom-post ol li {
    margin-bottom: 8px;
}

/* Footer Links */
.custom-post .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.custom-post .footer-links a {
    color: #003f63;
    text-decoration: none;
    font-weight: bold;
}
.custom-post .footer-links a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .custom-post .footer-links {
        flex-direction: row;
        gap: 20px;
    }
}/* End custom CSS */