.elementor-27372 .elementor-element.elementor-element-dfc6996{--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-d5e2035 */<style>
/* 1. Main Container Styling (Outer wrapper only) */
.custom-post {
    max-width: 100%;
    margin: 15px 0; 
    padding: 0; 
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow: hidden; 
}

/* 2. Header Styling (Card-like styling on header) */
.custom-post header {
    background-color: #005b96; /* Header background: #005b96 */
    color: white; /* White text */
    padding: 20px;
    border-radius: 8px; /* Corner round */
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-post header h1 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.2;
}

.custom-post .institute-address {
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 0;
}

/* 3. Section Styling (EACH SECTION IS A SEPARATE CARD) */
.custom-post section {
    margin: 0 0 20px 0; /* Creates vertical space between cards */
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffff; /* White background */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
    border: 1px solid #eee; /* Optional light border */
}

/* Section Headings Styling */
.custom-post h2, .custom-post h3 {
    color: #003f63; /* Section headings: #003f63 */
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
}

/* 4. Responsive Table Styling */
.custom-post .responsive-table {
    overflow-x: auto; /* Ensures responsiveness for long tables */
    margin-top: 15px;
    margin-bottom: 15px;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse; /* table-layout: auto, width: 100%, border-collapse: collapse */
    table-layout: auto;
    font-size: 0.95em;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    word-wrap: break-word; /* Wrap long text naturally */
}

.custom-post th {
    background-color: #e2f0fb; /* Table headers: #e2f0fb */
    color: #003f63;
    font-weight: 700;
}

/* 5. Important Notes Box Styling */
.custom-post .important {
    background-color: #fff3cd; /* Notes box: #fff3cd */
    border-left: 5px solid #ffca2c; /* with border-left #ffca2c */
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-style: italic;
    color: #856404;
}

.custom-post .important h4 {
    color: #856404;
    margin-top: 0;
    font-size: 1.1em;
}

/* 6. Button Styling */
.custom-post .cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    background-color: #005b96;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-post .cta-button:hover {
    background-color: #003f63;
}

/* 7. Footer Styling */
.custom-post footer section {
    box-shadow: none; /* Remove shadow from the inner footer section */
    border: none;
    padding-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.9em;
}

/* 8. Mobile adjustments (fully device friendly) */
@media screen and (max-width: 600px) {
    .custom-post header {
        padding: 15px;
    }
    .custom-post section {
        margin: 0 0 15px 0;
        padding: 15px;
    }
    .custom-post h2, .custom-post h3 {
        font-size: 1.3em;
    }
}
</style>/* End custom CSS */