.elementor-4769 .elementor-element.elementor-element-cfe8e63{--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;}/* Start custom CSS for html, class: .elementor-element-de660eb */:root {
        --mbbs-primary: #003567;
        --mbbs-secondary: #007c30;
        --mbbs-rare: #a97800;
        --mbbs-text: #000000;
        --mbbs-bg: #ffffff;
        --mbbs-bg-light: #f4f8fb;
    }

    /* Container and Base Elements */
    .mbbs-blog-wrapper {
        font-family: inherit;
        color: var(--mbbs-text);
        line-height: 1.7;
        width: 100%;
        background-color: var(--mbbs-bg-light); /* Medical feeling light background */
        background-image: radial-gradient(#e0ecf4 1px, transparent 1px);
        background-size: 20px 20px;
        padding: 20px 0;
    }
    .mbbs-blog-wrapper p {
        margin-bottom: 1.2rem;
        font-size: 1.05rem;
    }
    .mbbs-blog-wrapper h1, 
    .mbbs-blog-wrapper h2, 
    .mbbs-blog-wrapper h3 {
        color: var(--mbbs-primary);
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    .mbbs-blog-wrapper h1 { font-size: 2.2rem; }
    .mbbs-blog-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid #e0ecf4; padding-bottom: 8px; }
    .mbbs-blog-wrapper h3 { font-size: 1.4rem; color: var(--mbbs-rare); }

    .mbbs-blog-wrapper ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }
    .mbbs-blog-wrapper ul li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
    }
    .mbbs-blog-wrapper ul li::before {
        content: "\f00c"; /* FontAwesome check */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--mbbs-secondary);
        position: absolute;
        left: 0;
        top: 2px;
    }

    /* Sections */
    .mbbs-section {
        background: var(--mbbs-bg);
        width: 100%;
        max-width: 900px;
        margin: 0 auto 30px auto;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
        transition: box-shadow 0.3s ease;
        overflow: hidden;
    }
    .mbbs-section:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Images */
    .mbbs-figure {
        margin: 0 0 25px 0;
        text-align: center;
    }
    .mbbs-img-full {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .mbbs-figure figcaption {
        font-size: 0.9rem;
        color: #555;
        margin-top: 10px;
        font-style: italic;
    }

    /* Table of Contents */
    .mbbs-toc {
        background: var(--mbbs-bg);
        border: 2px solid var(--mbbs-primary);
        border-radius: 15px;
        padding: 20px;
        margin: 0 auto 30px auto;
        max-width: 900px;
        transition: box-shadow 0.3s ease;
    }
    .mbbs-toc:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .mbbs-toc summary {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--mbbs-primary);
        cursor: pointer;
        list-style: none;
        outline: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .mbbs-toc summary::-webkit-details-marker {
        display: none;
    }
    .mbbs-toc summary::after {
        content: '\f107';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    .mbbs-toc[open] summary::after {
        transform: rotate(180deg);
    }
    .mbbs-toc ul {
        margin-top: 15px;
        margin-bottom: 0;
    }
    .mbbs-toc ul li::before {
        content: "\f101";
        color: var(--mbbs-rare);
    }
    .mbbs-toc ul li a {
        text-decoration: none;
        color: var(--mbbs-text);
        font-weight: 500;
        transition: color 0.2s;
    }
    .mbbs-toc ul li a:hover {
        color: var(--mbbs-secondary);
    }

    /* Table Responsive styling */
    .mbbs-table-wrapper {
        overflow-x: auto;
        margin: 20px 0;
        border-radius: 15px;
        border: 1px solid #e0ecf4;
    }
    .mbbs-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .mbbs-table th {
        background-color: var(--mbbs-primary);
        color: var(--mbbs-bg);
        padding: 15px;
        text-align: left;
        font-weight: 600;
    }
    .mbbs-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: var(--mbbs-text);
    }
    .mbbs-table tr:last-child td {
        border-bottom: none;
    }
    .mbbs-table tr:hover td {
        background-color: #f8fbff;
    }

    /* FAQ Accordion */
    .mbbs-faq-item {
        margin-bottom: 15px;
        border: 1px solid #e0ecf4;
        border-radius: 10px;
        overflow: hidden;
        background: var(--mbbs-bg);
    }
    .mbbs-faq-item summary {
        padding: 15px 20px;
        font-weight: 600;
        color: var(--mbbs-primary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;
        outline: none;
        background-color: #fafcfd;
        transition: background 0.3s ease;
    }
    .mbbs-faq-item summary::-webkit-details-marker {
        display: none;
    }
    .mbbs-faq-item summary::after {
        content: '\2b'; /* Plus icon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--mbbs-secondary);
        font-size: 1.2rem;
        transition: transform 0.3s;
    }
    .mbbs-faq-item[open] summary {
        background-color: var(--mbbs-primary);
        color: var(--mbbs-bg);
    }
    .mbbs-faq-item[open] summary::after {
        content: '\f068'; /* Minus icon */
        color: var(--mbbs-bg);
        transform: rotate(180deg);
    }
    .mbbs-faq-content {
        padding: 20px;
        border-top: 1px solid #e0ecf4;
    }

    /* Call To Action Box */
    .mbbs-cta-box {
        background: linear-gradient(135deg, var(--mbbs-primary), #002244);
        color: var(--mbbs-bg);
        text-align: center;
        padding: 40px 20px;
        border-radius: 15px;
        margin: 30px auto;
        max-width: 900px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }
    .mbbs-cta-box h2 {
        color: var(--mbbs-bg);
        border: none;
        margin-top: 0;
        font-size: 2rem;
    }
    .mbbs-cta-box p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        opacity: 0.9;
    }
    .mbbs-btn {
        display: inline-block;
        background-color: var(--mbbs-secondary);
        color: var(--mbbs-bg);
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,124,48,0.3);
    }
    .mbbs-btn:hover {
        background-color: var(--mbbs-rare);
        color: var(--mbbs-bg);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(169,120,0,0.4);
    }

    /* Links inside content */
    .mbbs-section p a, .mbbs-section ul a {
        color: var(--mbbs-primary);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px dashed var(--mbbs-secondary);
        transition: all 0.3s;
    }
    .mbbs-section p a:hover, .mbbs-section ul a:hover {
        color: var(--mbbs-secondary);
        border-bottom: 1px solid var(--mbbs-secondary);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .mbbs-section {
            padding: 15px;
            border-radius: 10px;
        }
        .mbbs-blog-wrapper h1 { font-size: 1.8rem; }
        .mbbs-blog-wrapper h2 { font-size: 1.5rem; }
    }/* End custom CSS */