
a{
    color:#0066CC;
}
a:hover, a:focus {
    color: #00A3E0;
    text-decoration: 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;
}


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

/* Title */
.hero-title {
    font-size: 70px;
    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: 14px;
	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;
}
.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: #718096;
    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: #718096;
    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: #1A365D;
    color: white;
}
.footer {
    padding: 30px 0px;
    text-align: center;
}

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

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

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

.footer-copyright {
    color: #718096;
    font-size: 14px;
}
/* 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 amp-img{
		width: 35px !important;
        height: 35px !important;
        display: inline-block !important;
        vertical-align: middle;
	}
	
	.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;
}
.dossier-suggestion .name-list amp-img,
.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.5rem;
}

.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: 480px) {
	.hero{
		padding: 130px 20px 70px;
	}
	.hero-title {
        font-size: 33px;
        margin-bottom: 35px;
    }
	.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;
	}
}

@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;
	}
}

/* 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;
}
