/* ===========================================
   RESEARCH REPORT — PAGE-ONLY ISOLATED CSS
   =========================================== */

/*New CSS*/
/* Container */
.research-block {
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    line-height: 1.65;
    color: #222;
    max-width: 880px;
    margin: 0 auto;
    padding: 10px 0 40px;
}

/* Section */
.research-section {
    margin-bottom: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* Headings */
.section-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0d2a4a;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 14px;
}

/* Paragraphs */
.research-block p {
    margin: 10px 0 16px;
    font-size: 0.98rem;
    color: #333;
}

/* Lists */
.research-list {
    list-style: disc;
    margin-left: 22px;
    padding-left: 8px;
}

.research-list li {
    margin: 10px 0;
    font-size: 1.2rem;
    padding-left: 4px;
}

/* Bold in list */
.research-list li strong {
    color: #0b2742;
}

/* Date */
.analysis-date {
    margin-top: 14px;
    color: #555;
    font-size: 0.9rem;
    font-style: italic;
}

/*END CSS*
/* Global wrapper for fonts + spacing */
.research_header_container,
.research_position_container {
    font-family: "Inter", sans-serif;
}

/* =======================================================
   HEADER
   ======================================================= */
.research_header_container {
    max-width: 900px;
    margin: 40px auto 20px;
    padding: 28px 34px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
}

.research_header_container .report_name {
    font-size: 2.1rem;     /* BIGGER ON DESKTOP */
    font-weight: 700;
    // color: #1a4c7c;
	color:#9cb533;
    margin-bottom: 10px;
}

.research_header_container .report_description {
    font-size: 1.35rem;
    color: #444;
}

/* =======================================================
   MAIN BODY
   ======================================================= */
.research_position_container {
    max-width: 900px;
    margin: 25px auto 60px;
    padding: 28px 34px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
    line-height: 1.75;
    color: #222;
    font-size: 1.15rem;  /* Bigger desktop text */
}

/* Sub headings */
.research_position_container .report_sub_head {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a4c7c;
    margin: 40px 0 18px;
    border-left: 4px solid #1a4c7c;
    padding-left: 12px;
}

/* Paragraphs */
.research_position_container p {
    margin: 14px 0 20px;
    font-size: 1.35rem; /* Desktop larger */
    color: #222;
}

/* =======================================================
   TABLE (FULLY FIXED)
   ======================================================= */
.research_position_container .styled_table {
    margin: 25px 0 40px;
    padding: 18px;
    background: #fafafa;
    border: 1px solid #e0e4ea;
    border-radius: 10px;
    overflow-x: auto;
}

.research_position_container .styled_table table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0;
}

/* FIXED HEADER BACKGROUND — override any global styles */
.research_position_container .styled_table th {
    background: #eef3f7 !important;
    color: #1a1a1a !important;
    font-weight: 700;
    padding: 14px 12px;
    text-align: center!important;
    border-bottom: 2px solid #cfd6de;
    font-size: 1.05rem;
}

/* Table cells */
.research_position_container .styled_table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #e7e7e7;
    background: #fff;
    font-size: 1rem;
}

/* Center the SVG icons */
.research_position_container .styled_table svg {
    display: block;
    margin: auto;
}

/* Zebra rows */
.research_position_container .styled_table tr:nth-child(even) td {
    background: #fafafa;
}

/* =======================================================
   FOOTER DATE
   ======================================================= */
.research_position_container .session {
    margin-top: 30px;
    font-size: 1.4rem;
    color: #666;
    font-style: italic;
}

/* =======================================================
   MOBILE RESPONSIVENESS
   ======================================================= */
@media (max-width: 600px) {

    .research_header_container,
    .research_position_container {
        padding: 20px 16px;
        margin: 15px 12px;
    }

    .research_header_container .report_name {
        font-size: 1.55rem;
    }

    .research_header_container .report_description {
        font-size: 1.15rem;
    }

    .research_position_container {
        font-size: 0.98rem;
    }

    .research_position_container .report_sub_head {
        font-size: 1.3rem;
        padding-left: 8px;
    }

    .research_position_container p {
        font-size: 1.1rem;
    }

    .research_position_container .styled_table {
        padding: 10px;
    }

    .research_position_container .styled_table th,
    .research_position_container .styled_table td {
        padding: 10px 6px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}
/* Force the styled_table container to allow scrolling */
.research_position_container .styled_table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    display: block;
    -webkit-overflow-scrolling: touch;
}

/* Force the table to NOT exceed screen width */
.research_position_container .styled_table table {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: collapse;
}



/* On very small screens, reduce cell padding */
@media (max-width: 600px) {
.styled_table {
width:auto!important;
min-width:auto!important;
}
    .research_position_container .styled_table td,
    .research_position_container .styled_table th {
        padding: 8px 6px;
    }
}


