
a{
    color:#0066CC;
}
a:hover, a:focus {
    color: #00A3E0;
    text-decoration: none !important;
}
a:focus{
    outline: none !important;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 140px 40px 90px;
}

/* Animated Background Grid */
.background-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.company-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EBF8FF 0%, #E6F3FF 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0066CC;
    margin-bottom: 8px;
}

.company-name {
    font-weight: 600;
    color: #1A365D;
    font-size: 14px;
    margin-bottom: 4px;
}

.company-ticker {
    color: #718096;
    font-size: 12px;
}

.company-status {
    display: inline-block;
    background: #38A169;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: 8px;
    font-weight: 600;
}

/* Hero Content */
.hero-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #00A3E0;
    border-radius: 50%;
    display: inline-block;
}

.hero-badge-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #0066CC;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Title */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 45px;
    letter-spacing: -1px;
    color: #1A365D;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero p.sub-info{
	font-size: 13px;
	color: #718096;
}

.title-gradient {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-description {
    font-size: 20px;
    color: #545454;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.description-highlight {
    color: #2D3748;
    font-weight: 600;
    position: relative;
}

/* Search Section */
.search-section {
    animation: slideUp 0.8s ease-out 0.6s both;
}

.search-container {
    max-width: 650px;
    margin: 0 auto 60px;
    position: relative;
}
/* Browse by Ranking */
.browse-ranking {
    max-width: 700px;
    margin: 45px auto 0;
}
.ranking-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.ranking-divider-line {
    flex: 1;
    height: 2px;
    background: #e8f2fa;
    border-radius: 30px;
}
.ranking-divider-text {
    font-size: 16px;
    color: #2d3748;
    white-space: nowrap;
    font-weight: 500;
}
.ranking-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.ranking-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: #eef6fc;
    border: 1px solid #0399dc1f;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #2D3748;
}
.ranking-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, rgba(0, 163, 224, 0.06) 100%);
    border-color: #00A3E0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    color: #0066CC;
    text-decoration: none;
}
.ranking-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ranking-card-icon--cap {
    background: #d2efff;
    color: #0066CC;
}
.ranking-card-icon--revenue {
    background: #F0FFF4;
    color: #38A169;
}
.ranking-card-icon--employers {
    background: #FFF5F5;
    color: #E53E3E;
}
.ranking-card-label {
    font-size: 15px;
    font-weight: 600;
    color: #1A365D;
}
.ranking-card:hover .ranking-card-label {
    color: #0066CC;
}
.ranking-card-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    font-weight: bolder;
}
.ranking-card:hover .ranking-card-arrow {
    transform: translateX(3px);
    color: #0066CC;
}
.search-container input[type="search"] {
	width: 100%;
	height: 65px;
	padding: 10px 45px 10px 60px;
	color: #545454;
	font-size: 17px;
	background-image: none;
	border-radius: 70px;
	box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 20px 48px rgba(0, 102, 204, 0.08);
	border: 1px solid #E2E8F0;
	transition: all 0.3s;
}

.search-container input[type="search"]:focus {
	outline: none;
	border-color: #00A3E0;
	box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 24px 64px rgba(0, 102, 204, 0.15);
}

.search-container .search-btn {
	position: absolute;
	left: 30px;
	top: 55%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: unset;
	color: #0499dd;
}

.search-container input[type="search"]:hover {
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.06),
        0 24px 56px rgba(0, 102, 204, 0.12);
    transform: translateY(-2px);
}

 /* Company Dossiers Carousel Section */
.dossiers-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(3600deg, #ffffff 0%, #ffffff 100%);
}

.dossiers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.dossiers-header {
    text-align: center;
    margin-bottom: 50px;
}

.dossiers-title {
    font-size: 42px;
    font-weight: 800;
    color: #1A365D;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.dossiers-subtitle {
    font-size: 18px;
    color: #718096;
}

/* Carousel Container */
.carousel-wrapper {
    position: relative;
}

.carousel-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    border: 1px solid #E2E8F0;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-wrapper:hover .carousel-nav.prev{
	display: flex;
}

.carousel-nav.prev {
	display: none;
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Dossier Cards */
.dossier-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 20px 48px rgba(0, 102, 204, 0.06);
    border: 1px solid rgba(0, 163, 224, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dossier-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.04),
        0 20px 32px rgba(0, 0, 0, 0.08),
        0 30px 60px rgba(0, 102, 204, 0.12);
    border-color: #00A3E0;
}

.live-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 10px;
    height: 10px;
    background: #38A169;
    border-radius: 50%;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(56, 161, 105, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 161, 105, 0);
    }
}

.dossier-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.dossier-logo {
    width: 74px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 163, 224, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #0066CC;
    flex-shrink: 0;
    transition: all 0.3s;
}

.dossier-card:hover .dossier-logo {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    color: white;
    transform: rotate(-5deg) scale(1.05);
}

.dossier-info {
    flex: 1;
}

.dossier-name {
    font-weight: 700;
    color: #1A365D;
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.dossier-ticker {
    color: #545454;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #38A169 0%, #48BB78 100%);
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ai-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.chat-suggestions {
    font-size: 14px;
    color: #545454;
    line-height: 1.6;
    margin-bottom: 20px;
}

.chat-cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 163, 224, 0.05) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.dossier-card:hover .chat-cta-button {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    border-color: transparent;
}

.chat-cta-text {
    font-size: 15px;
    font-weight: 600;
    color: #0066CC;
}

.dossier-card:hover .chat-cta-text {
    color: white;
}

.chat-icon {
    width: 22px;
    height: 22px;
    color: #00A3E0;
    transition: all 0.3s;
}

.dossier-card:hover .chat-icon {
    color: white;
    transform: translateX(4px);
}

/* Animations */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .dossier-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 585px) {
    .dashboard-grid{
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
	.dashboard-grid .profile-card{
		padding: 30px !important;
	}
	.following-section{
		padding: 20px 15px !important;
	}
	.following-section .section-title,
	.dashboard-grid .profile-card h3{
		font-size: 18px !important;
	}
	.dashboard-grid .profile-icon{
		margin-top: 5px !important;
		width: 60px !important;
		height: 60px !important;
	}
	.dashboard-grid .btn-primary{
		font-size: 12px !important;
		padding: 10px 20px !important;
	}
	.following-section .section-count{
		font-size: 13px !important;
	}
}
/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Stats Row */
.stats-section{
    padding: 50px 0;
    background: #f4f9fd;
    margin: 0 0 0rem;
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 190px;
    padding: 8rem 0;
    animation: slideUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 43px;
    font-weight: 700;
    background: linear-gradient(135deg, #0165ca 0%, #00a3e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: #262626;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .nav-links a:not(.sign-up-btn) {
        display: none;
    }
    
    .stats-row {
        gap: 50px !important;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Footer */
.footer-section .footer{
	background-color: #122744;
	color: white;
}
.footer {
    padding: 30px 0px;
    text-align: center;
}

.footer-links {
    color: #525760;
    margin-bottom: 5px;
}

body.home .footer-copyright {
	color: #E6EDF6;
}

body.home .footer a {
	color: #6ED6FF;
}

body.home .footer a:hover,
body.home .footer a:focus-visible {
  color: #9FE5FF;
  text-decoration-thickness: 2px;
}

.footer-links a {
    color: #0366ca;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #00A3E0;
}

.footer-copyright {
    color: #525760;
    font-size: 14px;
}

.footer-copyright a{
	color: #0366ca;
}
/* Search */
@media only screen and (max-width: 540px) {
	.dossier-suggestion {
        width: 100%;
    }
}
@media only screen and (max-width: 675px) {
	
	.ai-bots-carousel {
		padding: 0 2.5rem;
	}

	.search-item .result-title{
		font-size: 15px !important;
		line-height: 1.3 !important;
	}

	.result-title .user_type {
		font-size: 10px !important;
		width: 45px !important;
		height: 16px !important;
		line-height: 16px !important;
	}

	.suggestion::-webkit-scrollbar,
	.dossier-suggestion::-webkit-scrollbar {
		width: 6px; 
	}
	.disclaimer {
		padding: 4rem 3rem 0;
	}
}
.suggestion, .dossier-suggestion{
	border-radius: 8px;
	padding: 0 25px !important;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 12px 24px rgba(0, 0, 0, 0.04), 0 20px 48px rgba(0, 102, 204, 0.06);
}

.dossier-suggestion{
	max-height: 420px;
	overflow-y: scroll;
	position: absolute;
	background-color: #ffffff;
	overflow: auto;
	width: 500px;
	z-index: 1;
}

.suggestion::-webkit-scrollbar,
.dossier-suggestion::-webkit-scrollbar {
    width: 8px; 
}

.suggestion::-webkit-scrollbar-track,
.dossier-suggestion::-webkit-scrollbar-track {
    background: #F8F9FA;
}

.suggestion::-webkit-scrollbar-thumb,
.dossier-suggestion::-webkit-scrollbar-thumb  {
	border-radius: 30px;
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
}

.suggestion::-webkit-scrollbar-thumb:hover,
.dossier-suggestion::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
}

.search-item:first-of-type{
	margin-top: 10px;
}
.suggestion .search-item:last-of-type,
.dossier-suggestion .search-item:last-of-type{
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 7px 20px;
    margin: 20px 0;
    color: #ffffff;
    font-weight: normal;
    font-size: 14px;
    background: #00a3e0;
    border-radius: 25px;
    transition: linear .2s;
    border: 1px solid #00a3e0;
}
.suggestion .search-item:last-of-type{
	height: 36px;
	padding: 0;
	line-height: 36px;
}
.suggestion .search-item:last-of-type i{
    color: #fff;
    font-size: 14px;
}
.search-item:last-of-type:hover {
	color: #00a3e0 !important;
	background-color: transparent;
	border-color: #00a3e0;
	text-decoration: none !important;
}

.search-item:last-of-type:hover i{
	 color: #e6c202 !important;
}

.dossier-suggestion .result-item{
	background: #ffffff !important;
}

.dossier-suggestion .result-item:hover .result-title{
	color: #00a2e2 !important;
}
.result-item{
	display: flex;
	padding: 15px 3px;
	position: relative;
	border-bottom: 1px solid rgb(4 153 221 / 18%);
	transition: all 0.3s;
}
.result-item:hover{
    transform: translateX(8px);
}
.dossier-suggestion .search-name {
    display: table-cell !important;
    float: none;
}
.result-item .img-container{
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}
.result-details {
    flex-grow: 1;
	align-content: center;
}
.dossier-suggestion .search-item .result-title {
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	color: #1a365d;
	line-height: 1.4;
}
.search-item .result-title .highlight{
	background-color: #ffc10791;
	padding: 0 3px 1px;
	border-radius: 3px;
	color: #1e1e1e;
}
.result-item img {
    object-fit: cover;
    border-radius: 5px;
    height: 45px;
    width: 45px;
	background-color: #000;
}

.search-item .result-title{
	font-size: 16px;
	color: #1a365d;
	margin-bottom: 5px;
	font-weight: 400;
	line-height: 1.4;
}

.result-details p.result-subtitle {
	padding: 0;
	font-size: 14px;
	color: #718096;
	text-align: left;
	margin: 3px 0 0;
	line-height: 1.3;
	font-weight: normal;
}

.no-outline:hover{
	border-radius: 10px;
}

.result-title .user_type {
	display: inline-block;
	vertical-align: top;
	font-size: 11px;
	color: #00a2df;
	border-radius: 3px;
	width: 50px;
	height: 18px;
	line-height: 18px;
	background-color: #e7f4ff;
	text-align: center;
	padding: 0;
	margin-left: 5px;
}

.search-container {
	position: relative;
	width: 500px;
	margin: 0rem auto 1.1rem;
}

.search-container input[type="search"]::placeholder{
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.hero{
		padding: 140px 20px 80px;
		min-height: auto;
	}
}
@media only screen and (max-width: 830px) {
	.stats-row{
		gap: 115px;
	}
}

@media only screen and (max-width: 768px) {
	.ranking-cards {
		gap: 10px;
	}
	.ranking-card {
		padding: 10px 16px;
	}
	.ranking-card-label {
		font-size: 14px;
	}
	.ranking-card-icon {
		width: 28px;
		height: 28px;
	}
	.ranking-card-icon svg {
		width: 15px;
		height: 15px;
	}
	.hero-badge-text {
		font-size: 12px;
		letter-spacing: 2px;
	}
}

@media only screen and (max-width: 480px) {
	.hero{
		padding: 130px 20px 70px;
	}
	.hero-title {
        font-size: 33px;
        margin-bottom: 20px;
    }
	.hero-badge {
		margin-bottom: 20px;
		gap: 8px;
	}
	.hero-badge-dot {
		width: 6px;
		height: 6px;
	}
	.hero-badge-text {
		font-size: 11px;
		letter-spacing: 1.5px;
	}
	.dossiers-section{
		padding: 40px 0 50px;
	}
	.dossiers-container{
		padding: 0 20px;
	}
	.dossiers-header{
		margin-bottom: 30px;
	}
	.dossiers-title{
		font-size: 28px;
	}
	.dossiers-subtitle{
		font-size: 15px;
	}
	.carousel-nav{
		width: 35px;
		height: 35px;
	}
	.hero-description{
		font-size: 16px;
		padding: 0 10px;
	}
	.hero p.sub-info{
		font-size: 13px;
		margin: 10px 0;
	}
	.badge{
		padding: 5px 10px;
		gap: 7px;
		margin-bottom: 25px;
	}
	.badge-icon{
		width: 12px;
		height: 12px;
	}
	.badge-text{
		font-size: 13px;
	}
	.search-container {
		width: 100%;
		margin: 0 auto 0;
	}
	.dossier-suggestion{
		width: 100%;
	}
	.search-container input[type="search"]{
		padding: 5px 25px 5px 45px;
		height: 50px;
		font-size: 15px;
	}
	.search-container .search-btn{
		left: 20px;
	}
	.stats-row{
		padding: 15px 0;
		gap: 30px !important;
	}
	.stat-number {
        font-size: 20px;
    }
	.stat-label{
		font-size: 12px;
	}
	.footer-links a{
		font-size: 14px;
	}
	.ranking-cards {
		flex-direction: column;
		align-items: center;
	}
	.ranking-card {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}
	.ranking-divider {
		gap: 12px;
		margin-bottom: 20px;
	}
	.ranking-divider-text {
		font-size: 13px;
	}
	.browse-ranking {
		padding: 0 10px;
	}
}

@media screen and (min-width: 784px) and (max-width: 992px) {
	#cover-image-container.dossier-item .bb-user-content-wrap {
        text-align: center !important;
    }

	#cover-image-container.dossier-item #item-header-content>.flex {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap !important;
    }
	#cover-image-container.dossier-item div#item-header-content .flex {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
	#cover-image-container.dossier-item .bb-user-content-wrap .item-meta{
		margin: 15px 0 18px;
        padding: 0;
	}
}
@media screen and (max-width: 783px) {
	#cover-image-container.dossier-item .bb-user-content-wrap .item-meta{
		margin: 5px 0 15px;
		font-size: 13px;
        padding: 0;
	}
}
@media screen and (min-width: 993px) and (max-width: 1300px) {
	#cover-image-container.dossier-item .member-header-actions{
		padding-left: 0;
	}
}

/* ===== Ranking Tabs & Ranked List (page-top.php) ===== */
.top-list .bp-list>li{
	margin-bottom: 5px !important;
}
/* Column Headers */
.ranking-col-headers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;
    margin-bottom: 4px;
}
.col-header-company,
.col-header-value {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #737a82;
}
.col-header-value {
    text-align: right;
    min-width: 140px;
}

.ranking-tabs-wrapper {
    margin: 0 0 25px;
}
.ranking-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    background: #FAFBFC;
    border-bottom: none;
}
.ranking-tab {
    flex: 1;
    position: relative;
}
.ranking-tab + .ranking-tab {
    border-left: 1px solid #E2E8F0;
}
.ranking-tab a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: center;
    padding: 25px 14px 25px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 3px solid #e2e8ef;
}
.ranking-tab a:hover {
    background: #F0F5FA;
}
.ranking-tab.active a {
    background: #fff;
    border-bottom-color: #0066CC;
}
.ranking-tab-icon {
    color: #718096;
    display: block;
    line-height: 1;
    transition: color 0.25s ease;
    margin: 0 auto;
}
.ranking-tab.active .ranking-tab-title,
.ranking-tab a:hover .ranking-tab-icon,
.ranking-tab.active .ranking-tab-icon {
    color: #0066CC;
}
.ranking-tab-title {
    font-size: 19px;
    font-weight: 500;
    color: #1A365D;
    line-height: 1.3;
    display: block;
    margin: 0 auto;
}
.ranking-tab a:hover .ranking-tab-title {
    color: #0066CC;
}
.ranking-tab-desc {
    font-size: 14px;
    font-weight: 400;
    color: #2d3748;
    line-height: 1.4;
    display: block;
    margin: 0 auto;
}

/* Ranked list items â€” card row layout */
.ranked-item .list-wrap-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ranked-item .item {
    flex: 1 !important;
    min-width: 0;
}
.ranked-item .list-wrap {
    border: 1px solid #EDF2F7;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 20px 24px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    background: #fff;
}
.ranked-item .list-wrap:hover {
    border-color: #CBD5E0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transform: translateY(-1px);
}
.ranked-item .list-title a {
    color: #1A365D;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
}
.ranked-item .list-title a:hover {
    color: #0066CC;
}
.ranked-item .list-subtitle {
    color: #718096;
    font-size: 13px;
    margin-top: 3px;
    line-height: 1.4;
}

/* Rank Badge â€” pill with warm background */
.ranked-item .rank-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFECD2 100%);
    color: #C05621;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

/* Ticker Badge */
.ranked-item .ticker-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 36px;
    padding: 0 8px;
    border-radius: 8px;
    background: #F0F4F8;
    color: #4A5568;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

/* Value Column â€” right-aligned with progress bar */
.ranked-item .rank-value-col {
    flex-shrink: 0;
    min-width: 130px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.ranked-item .rank-value-number {
    font-size: 18px;
    font-weight: 800;
    color: #1A365D;
    letter-spacing: 0.2px;
}
.ranked-item .rank-value-bar-track {
    width: 100%;
    max-width: 120px;
    height: 5px;
    background: #EDF2F7;
    border-radius: 3px;
    overflow: hidden;
}
.ranked-item .rank-value-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}
.ranked-item .rank-value-suffix {
    font-size: 11px;
    color: #1a355db3;
    font-weight: 500;
}

/* Responsive ranking tabs & rows */
@media (max-width: 768px) {
    .ranking-tabs {

    }
    .ranking-tab + .ranking-tab {
     
    }
    .ranking-tab a {
        padding: 15px 5px 15px;
    }
    .ranking-tab.active a {
   
    }
    .ranking-tab-title {
        font-size: 14px;
    }
    .ranking-tab-desc {
        font-size: 12px;
    }
    .ranking-col-headers {
        padding: 0 14px;
    }
    .ranked-item .list-wrap {
        padding: 14px 14px !important;
        border-radius: 12px;
    }
    .ranked-item .list-wrap-inner {
        gap: 10px;
    }
    .ranked-item .rank-badge {
        min-width: 34px;
        height: 28px;
        font-size: 12px;
        padding: 0 7px;
    }
    .ranked-item .ticker-badge {
        display: none;
    }
    .ranked-item .rank-value-col {
        min-width: 80px;
    }
    .ranked-item .rank-value-number {
        font-size: 15px;
    }
    .ranked-item .rank-value-bar-track {
        max-width: 80px;
    }
    .ranked-item .list-title a {
        font-size: 15px;
    }
    .ranked-item .list-subtitle {
        font-size: 12px;
    }
}
@media (max-width: 570px) {
	 .ranking-tab a {
        padding: 15px 5px 15px;
        min-height: 155px;
    }
}
@media (max-width: 489px) {
	.col-header-company, .col-header-value{
		font-size: 12px;
	}
	 .ranking-tab a {
        padding: 16px 8px 5px;
        min-height: 178px;
    }
}
@media (max-width: 370px) {
	#members-list.item-list:not(.grid) .ranked-item .list-wrap .list-wrap-inner {
	    flex-direction: row;
    }
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

/* Profile Card */
.dashboard-grid .profile-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.dashboard-grid .profile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 163, 224, 0.1) 100%);
    border-radius: 20px;
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-grid .profile-icon svg {
    width: 40px;
    height: 40px;
    color: #00a3e0;
}

.dashboard-grid .profile-card h3 {
    font-size: 20px;
    color: #1A365D;
    margin-bottom: 12px;
}

.dashboard-grid .profile-card p {
    color: #718096;
    margin-bottom: 24px;
}

.dashboard-grid .btn-primary {
    background: #00a3e0;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.dashboard-grid .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
}

/* Following Section */
.following-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-height: 375px;
    display: flex;
    flex-direction: column;
}

.following-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.following-section .section-title {
    font-size: 20px;
    color: #1A365D;
    font-weight: 600;
    margin-top: 5px;
}

.following-section .section-count {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.following-section .following-list {
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

.following-section .following-list::-webkit-scrollbar {
    width: 6px;
}

.following-section .following-list::-webkit-scrollbar-track {
    background: #F8F9FA;
    border-radius: 10px;
}

.following-section .following-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    border-radius: 10px;
}

.following-section .company-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 12px;
    background-color: #fafdff;
}

.following-section .company-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 163, 224, 0.05) 100%);
    transform: translateX(8px);
}

.following-section .company-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-right: 16px;
}

.following-section .company-details {
    flex: 1;
}

.following-section .company-name {
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 4px;
}

.following-section span.user_type{
    font-weight: normal;
}

.following-section .company-ticker {
    font-size: 14px;
    color: #718096;
}

.following-section .company-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    font-weight: normal;
}

.following-section .status-dot {
    width: 8px;
    height: 8px;
    background: #38A169;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.following-section .status-text {
    font-size: 12px;
    color: #38A169;
    font-weight: normal;
}

/* =======================
   REASONING CSS
   ======================= */
.bp-reasoning{
  display: table;
}
.bp-reasoning-icon{
  width: 15px;
  height: 15px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  place-items:center;
  font-size: 11px;
  font-weight:900;
  line-height: 15px;
  cursor:pointer;
  user-select:none;
  color: #ffffff;
  background: rgb(4 161 226);
  vertical-align: text-bottom;
  margin-left: 5px;
}
.bp-reasoning-close,
.bp-reasoning-icon {
  pointer-events: auto;
}
.bp-reasoning-icon:hover{
  background: rgb(3 102 203);
}
/* ONLY allow hover preview on real hover devices */
@media (hover: hover) and (pointer: fine) {
    .bp-reasoning:not(.bp-open):hover .bp-reasoning-expanded{
        display:block;
    }
}
.bp-reasoning-expanded{
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  background:#ffffff;
  color:#111827;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 14px 38px rgba(0,0,0,.15);
  display:none;
  z-index: 1100;
  margin-bottom: 10px;
}
.bp-reasoning.bp-open .bp-reasoning-expanded{
  display:block;
}
.bp-reasoning-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}
.bp-reasoning-confidence{
  display:inline-flex;
  align-items:center;
  font-size: 11px;
  font-weight: normal;
  padding: 3px 10px;
  /* margin-left: 5px; */
  border-radius: 10px;
  background:#dcfce7;
  color: #00862f;
}
.bp-reasoning-close{
  width: 25px;
  height: 25px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  background:#f3f4f6;
  color:#374151;
  font-weight:900;
  display: none;
  text-align: center;
  line-height: 25px;
}
.bp-reasoning-close:hover{ background:#e5e7eb; }
.bp-reasoning-body{
  margin:0;
  font-size:14px;
  line-height:1.5;
  color:#374151;
}
@media (max-width: 1024px) {
    .bp-reasoning-close{
        display: block;
    }
}
.stop-dr-run-wrapper {
    display: flex;
}
.stop-dr-run-wrapper button.dr-button {
    position: relative;
    font-size: 14px !important;
    width: 30px;
    padding: 0 !important;
    height: 30px;
    min-height: 30px !important;
    line-height: 29px !important;
    white-space: nowrap;
    background-color: #0066cc47 !important;
    border-color: transparent !important;
    color: #0066cc !important;
}
.stop-dr-run-wrapper button.dr-button i{
    animation: live-pulse 2s infinite;
    border-radius: 30px;
}
@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(0 124 255 / 43%);
    }
    70% {
        box-shadow: 0 0 0 10px rgb(230 195 0 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(230 195 0 / 0%);
    }
}
.stop-tooltip{
    position: absolute;
    bottom: calc(100% + 5px);
    transform: translateX(-105%) translateY(35px) !important;
    background: #dcdddf;
    color: #000000;
    border-radius: 3px;
    left: 0;
    padding: 6px 8px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: normal;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(205 192 192 / 9%);
    z-index: 9999;
    pointer-events: none;
    line-height: 1.4;
}
.dr-button:hover .stop-tooltip{
    opacity: 1;
    visibility: visible;
}
.stop-tooltip:after{
    content: '';
    position: absolute;
    top: 33%;
    right: -17px;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #122b4600 #9c1e1e00 #1d369e00 #dcdddf;
}
#bp-message-thread-list .bp-message-content-wrap p code{
	font-size: 1.4rem;
    line-height: 1.7;
    background-color: #7d232300;
    font-family: inherit;
}