/* Theme: Extent Research - Single Report Optimized CSS
Version: 2.0.0
Fixed: Latest Reports, More News, Animated Buttons 
*/

/* --- 1. Global Page Layout --- */
.report-single-main { padding: 40px 0; background: #fff; }
.report-content-grid { 
    display: grid !important; 
    grid-template-columns: 1fr 340px !important; 
    gap: 35px; 
}

/* Breadcrumbs Styling */
.report-breadcrumbs { font-size: 13px; color: #888; margin-bottom: 25px; }
.report-breadcrumbs a { color: #00738b; text-decoration: none; font-weight: 500; }
.report-breadcrumbs span { color: #555; }

/* Meta Bar Fix */
.report-meta-bar { 
    background: #f9f9f9; padding: 15px; border: 1px solid #eee; 
    display: flex; gap: 25px; font-size: 13px; margin-bottom: 30px; 
}
.report-meta-bar span i { color: #00738b; margin-right: 6px; }

/* --- 2. Interactive Tabs UI --- */
.report-tabs { display: flex; background: #00738b; border-bottom: 3px solid #f3a847; margin-bottom: 25px; border-radius: 4px 4px 0 0; }
.tab-btn { 
    background: transparent; color: #fff; padding: 14px 22px; border: none; 
    cursor: pointer; font-weight: bold; font-size: 13px; transition: 0.3s;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.tab-btn.active { background: #f3a847; color: #fff; }
.tab-btn:hover { background: #f3a847; }

.tab-pane { display: none; padding: 10px 0; line-height: 1.8; color: #444; }
.tab-pane.active { display: block; animation: fadeIn 0.4s ease; }

/* --- 3. Sidebar Widgets (Standard Design) --- */
.sidebar-widget { border: 1px solid #ddd; margin-bottom: 30px; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.sidebar-widget h3 { background: #1b2623; color: #fff; padding: 12px 15px; font-size: 15px; margin: 0; font-weight: 500; }

/* Price Format Widget */
.price-options label { display: block; padding: 15px; border-bottom: 1px solid #eee; font-size: 13px; cursor: pointer; transition: 0.2s; }
.price-options label:hover { background: #fcfcfc; }
.price-options label strong { float: right; color: #333; }

/* Support Widget */
.support-header { background: #1b2623 !important; color: #fff; padding: 12px 15px; font-weight: bold; font-size: 14px; text-transform: uppercase; }
.support-content { padding: 30px 20px; background: #f9f9f9; text-align: center; border: 2px solid #00738b; border-top: none; }
.support-check { font-size: 45px !important; color: #00738b; height: 45px; width: 45px; margin-bottom: 15px; }
.support-content h4 { color: #333; margin-bottom: 10px; font-size: 18px; }
.support-content p { font-size: 14px; margin: 6px 0; color: #555; }
.support-content a { color: #00738b; font-weight: 700; text-decoration: none; border-bottom: 1px dashed; }

/* Sidebar Latest News Fix */
.news-item-side { padding: 15px; border-bottom: 1px solid #eee; transition: 0.3s; }
.news-item-side:hover { background: #f9f9f9; }
.news-item-side a { color: #333; text-decoration: none; font-size: 13px; font-weight: 700; display: block; margin-bottom: 6px; line-height: 1.4; }
.news-item-side span { font-size: 11px; color: #999; text-transform: uppercase; }

/* More News Link Enhancement */
.view-more-news, .more-link {
    display: inline-block; padding: 12px 15px; color: #00738b !important; 
    font-weight: 700; text-decoration: none; font-size: 13px; transition: 0.3s;
}
.view-more-news:after { content: ' \2192'; display: inline-block; transition: 0.3s; margin-left: 5px; }
.view-more-news:hover { color: #f3a847 !important; padding-left: 20px; }

/* --- 4. Premium Animated Buttons --- */
.buy-now-btn, .tab-btn.link-btn {
    position: relative; overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1; border: none; cursor: pointer;
}

/* Hover Lift & Glow Effect */
.buy-now-btn:hover, .tab-btn.link-btn:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

/* Dynamic Shine Animation */
.buy-now-btn::after, .tab-btn.link-btn::after {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.7s; z-index: 2;
}

.buy-now-btn:hover::after, .tab-btn.link-btn:hover::after { left: 100%; }

.buy-now-btn { background-color: #f3a847; color: #fff; font-weight: 800; font-size: 15px; padding: 16px; width: 100%; text-transform: uppercase; }
.tab-btn.link-btn { background-color: #00738b; color: #fff; }

/* --- 5. Latest Reports Bottom Section --- */
.latest-reports-bottom { margin-top: 50px; border: 1px solid #e0e0e0; border-radius: 4px; overflow: hidden; }
.latest-reports-bottom ul { list-style: none; padding: 0; margin: 0; }
.latest-reports-bottom li { border-bottom: 1px solid #f2f2f2; transition: 0.3s ease; border-left: 0 solid #f3a847; }
.latest-reports-bottom li:last-child { border-bottom: none; }
.latest-reports-bottom li a { display: block; padding: 15px 20px; color: #00738b; text-decoration: none; font-size: 14px; font-weight: 600; }

.latest-reports-bottom li:hover { 
    background: #fcfcfc; 
    border-left: 6px solid #f3a847; 
    padding-left: 5px;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Optimization */
@media (max-width: 991px) {
    .report-content-grid { grid-template-columns: 1fr !important; }
}
/* WHAT REPORT PROVIDES Widget Styling */
.provides-widget {
    background: #fff !important;
    border: 1px solid #eee !important;
    margin-top: 25px !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.provides-header {
    background: #1b2623 !important; /* Dark Green Theme */
    color: #fff !important;
    padding: 15px !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-bottom: 3px solid #f3a847 !important; /* Orange accent */
}

.provides-list {
    list-style: none !important;
    padding: 15px !important;
    margin: 0 !important;
}

.provides-list li {
    font-size: 13.5px !important;
    color: #444 !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: flex-start !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid #f9f9f9 !important;
    padding-bottom: 8px !important;
}

.provides-list li:last-child {
    border-bottom: none !important;
}

.provides-list li i {
    color: #f3a847 !important; /* Orange Check Icon */
    margin-right: 10px !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
}