/*
 * Custom CSS for NeoLacta HCP Evidence Review Page
 * Includes typography, layout overrides, and component styling.
 */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
    scroll-behavior: smooth;
}
.container-xl {
    max-width: 1280px;
}
/* Custom styles for professional, minimal look */
.pharma-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}
.data-point {
    border-left: 4px solid #3b82f6; /* Blue border for emphasis */
    padding-left: 1rem;
}
/* Custom visualization style for charts/graphs */
.mock-chart-bar {
    height: 10px;
    border-radius: 9999px;
    transition: width 0.5s ease-out;
}
.tab-button.active {
    border-color: #3b82f6;
    color: #3b82f6;
    background-color: #eff6ff;
}
.product-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.product-details.expanded {
    max-height: 500px; /* Sufficient height for content */
}
