
/*============celeb section title=========*/
.fb-celeb-section-title{
color: #ffffff;
font-weight: 700;
font-size: 24px;
margin-bottom: 24px;
}

/*============divider=========*/
.fb-divider-container {
display: flex;   
align-items: center; 
margin-top: 56px;   
margin-bottom: 56px;
}

.fb-divider-line {
flex: 1;
height: 1px; 
background: linear-gradient(
to right,
transparent,
#4b5563,  
transparent
);        
}

/*===========BREADCRUMBS===========*/

.breadcrumbs{
display: flex;
align-items: center;
gap: 8px;
padding: 16px 0px;
margin-bottom: 20px;
}

.breadcrumbs a{
color: #9CA3AF; 
transition: color 0.2s ease; 
font-size: 14px;
line-height: 20px;
font-weight: 500;
white-space: nowrap;
}

.breadcrumbs span{
margin-top: 2px;
}

.breadcrumbs a:hover{
color: #FFFFFF;
}

/*========CELEB DETAILS CARD=======*/
.celeb-details-card{
background-color: #111827;
border: 1px solid #374151;
border-radius: 12px;
overflow: hidden;
padding: 24px;
}

/*========celeb DETAILS CARD - INNER=======*/
.celeb-details-card-inner {
display: flex;
gap: 24px;
align-items: flex-start;
}

/* Left side */
.celeb-details-card-left {
display: flex;
flex-direction: column;
align-items: center;
}

.celeb-details-card-image-wrapper{
position: relative;
width: 192px;
height: 256px;
border-radius: 12px;
overflow: hidden;
border: 2px solid #4b5563;
transition: all 0.3s ease;
}

.celeb-details-card-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.celeb-details-card-image-wrapper:hover  {
border-color: #e84d67;
}


.celeb-details-card-image-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
border-radius: 12px;
opacity: 0;
transition: opacity 0.3s ease;
}

.celeb-details-card-image-wrapper:hover .celeb-details-card-image-overlay {
opacity: 1;
}

.celeb-details-card-share {
margin-top: 16px;
}

.celeb-details-card-share-btn {
color: #9ca3af;
padding: 8px;
border-radius: 8px;
transition: all 0.3s ease;
display: inline-block;
}

.celeb-details-card-share-btn:hover {
color: #e84d67;
background-color: #17202e;
}

/* Right side */
.celeb-details-card-right {
flex: 1;
}

.celeb-details-card-name {
color: white;
font-size: 30px; 
font-weight: bold;
margin-bottom: 8px;
}

.celeb-details-card-profile{
color: #9CA3AF;
transition: color 0.2s ease;
font-size: 14px;
line-height: 20px;
font-weight: 500;
margin-bottom: 8px;
}

.celeb-details-card-role {
color: #e84d67;
font-size: 18px; 
font-weight: 500;
margin-bottom: 16px;
}

.celeb-details-card-section-title {
color: white;
font-size: 20px; 
font-weight: 600;
margin-bottom: 12px;
}

.celeb-details-card-bio {
color: #d1d5db;
font-size: 16px;
line-height: 1.6;
}

.celeb-details-card-read-more {
margin-top: 16px;
display: flex;
justify-content: flex-start;
}

.celeb-details-card-read-btn {
display: flex;
align-items: center;
gap: 8px;
background: none;
border: none;
color: #e84d67;
font-weight: 500;
cursor: pointer;
transition: color 0.3s ease;
font-size: 16px;
}

.celeb-details-card-read-btn:hover {
color: rgba(232, 77, 103, 0.8);
}

/*============FILTER BY CELEB PROFILE========*/

.filter-by-celeb-profile{
display: flex;
gap: 18px;
margin-bottom: 24px;
}

.celeb-profile-item {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border-radius: 8px;
border: 1px solid var(--inactive-border);
background: var(--inactive-bg);
color: var(--inactive-color);
white-space: nowrap;
transition: all 0.2s ease;
/* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);  */
cursor: pointer;
font-size: 16px;
font-weight: 500;
}

.celeb-profile-item:hover {
background: #1f2937;
border-color: #6b7280;
color: #FFFFFF;
}

.celeb-profile-item.active {
background: var(--active-bg);
border-color: var(--active-border);
color: var(--active-color);
}


/*============celeb moview details container========*/
.celeb-movies-details-container{
padding: 24px 0px;
}

/*============celeb moviews details table wrapper========*/
.celeb-movies-details-tb-wrapper{
background-color: #17202e;
border: 1px solid #374151;
border-radius: 8px;
overflow: hidden;
}

/*============celeb moviews details table wrapper- table========*/
.celeb-movies-details-table {
width: 100%;
border-collapse: collapse;
}

.celeb-movies-details-table thead {
background-color: #242a38;
}

.celeb-movies-details-table th {
padding: 16px;
font-size: 18px;
font-weight: 600;
text-align: left;
color: #ffffff;
}

.celeb-movies-details-table tbody tr {
border-bottom: 1px solid #374151;
transition: background-color 0.3s ease;
}

.celeb-movies-details-table tbody tr:last-child{
border-bottom: none;
}

.celeb-movies-details-table tbody tr:hover {
background-color: #1f2937;
}

.celeb-movies-details-table td {
padding: 16px;
vertical-align: middle;
font-size: 14px;
color: #d1d5db;
transition: color 0.3s ease;
}

.celeb-movies-details-table tbody tr:hover td {
color: #ffffff;
}

.celeb-movie-info {
display: flex;
align-items: center;
gap: 16px;
}

.celeb-movie-img{
width: 64px;
height: 80px;
}

.celeb-movie-img img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
border: 2px solid #4b5563;
transition: border-color 0.3s ease;
}

.celeb-movies-details-table tbody tr:hover .celeb-movie-img img {
border-color: #e84d67;
}

.celeb-movie-meta {
display: flex;
flex-direction: column;
gap: 4px;
}

.celeb-movie-lang {
font-size: 12px;
color: #e84d67;
font-weight: 500;
}

.celeb-movie-title {
font-size: 14px;
font-weight: 600;
color: #ffffff;
transition: color 0.3s ease;
}

.celeb-movies-details-table tbody tr:hover .celeb-movie-title {
color: #e84d67;
}

.celeb-movie-role {
font-size: 12px;
color: #9ca3af;
}


/*============celeb personal details container========*/
.celeb-personal-details-container{
margin-top: 24px;
}

/*============celeb personal details tb wrapper========*/
.celeb-personal-details-tb-wrapper {
background-color: #17202e;
border: 1px solid #374151;
border-radius: 8px;
overflow: hidden;
}

/*============celeb personal details tb wrapper - tb========*/
.celeb-personal-details-table{
width: 100%;
border-collapse: collapse;
}

.celeb-personal-details-table tr{
border-bottom: 1px solid #374151;
transition: background-color 0.3s ease;
}

.celeb-personal-details-table tr:last-child{
border-bottom: none;
}

.celeb-personal-details-table tr:hover {
background-color: #1f2937;
}

.celeb-personal-details-table td {
padding: 16px;
font-size: 14px;
line-height: 20px;
width: 50%;
font-weight: 500;
}

.celeb-personal-details-table tr td:first-child{
color: #d1d5db;
font-weight: 600;
}

.celeb-personal-details-table tr td:last-child{
color: #ffffff; 
}


/*
============celeb interview video block========
*/

.celeb-interview-video-block{
margin-top: 48px;
}

/*============celeb interview video - card ========*/
.celeb-interview-video-card {
background-color: #17202e;
border-radius: 8px;
border: 1px solid #374151;
overflow: hidden;
cursor: pointer;
transition: background-color 0.3s ease;
}

.celeb-interview-video-card:hover {
background-color: #1f2937;
}

/*============celeb interview video - thumb ========*/
.celeb-interview-video-thumb {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
background-color: #1f2937;
overflow: hidden;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.celeb-interview-video-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}

.celeb-interview-video-card:hover .celeb-interview-video-thumb img {
transform: scale(1.05);
}

/*============celeb interview video - thumb overlay========*/
.celeb-interview-video-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
opacity: 0;
transition: opacity 0.3s ease;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.celeb-interview-video-card:hover .celeb-interview-video-overlay {
opacity: 1;
}

.celeb-interview-play-wrapper{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.celeb-interview-play-btn{
background-color: #e11d48;
border-radius: 50%;
width: 64px;
height: 64px;
box-shadow: 0 4px 6px rgba(0,0,0,0.4);
opacity: 0;
transition: opacity 0.3s ease;
display: flex;   
align-items: center;
justify-content: center;
}

.celeb-interview-video-card:hover .celeb-interview-play-btn{
opacity: 1;
}

.celeb-interview-play-btn svg{
width: 40px;
height: 40px;
color: #fff;
}

/*============celeb interview video duration ========*/
.celeb-interview-video-duration {
position: absolute;
bottom: 16px;
right: 16px;
background-color: rgba(0,0,0,0.8);
color: #fff;
padding: 8px 12px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
}

/*============celeb interview video content ========*/
.celeb-interview-video-content {
padding: 24px;
}

.celeb-interview-video-content h4 {
color: #fff;
font-weight: 500;
font-size: 18px;
line-height: 1.4;
margin-bottom: 8px;
transition: color 0.3s ease;
}

.celeb-interview-video-card:hover .celeb-interview-video-content h4{
color: #e84d67;
}

.celeb-interview-video-content p {
color: #9ca3af;
font-size: 14px;
}

/*
============celeb famous container ========
*/

.celeb-famous-container{
margin-top: 48px;
}

/*============celeb famous card grid ========*/

.celeb-famous-card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

/*============celeb famous card========*/
.celeb-famous-card {
position: relative;
background-color: #17202e;
border-radius: 8px;
overflow: hidden;
border: 1px solid #374151;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
height: 100%;
}

.celeb-famous-card:hover {
background-color: #1f2937;
border-color: #e84d67;
}

/*============celeb famous card - thumb ========*/
.celeb-famous-card-thumb {
position: relative;
width: 100%;
aspect-ratio: 3 / 4;
overflow: hidden;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.celeb-famous-card-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.celeb-famous-card:hover .celeb-famous-card-thumb img {
transform: scale(1.05);
}

.celeb-famous-card-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
opacity: 0;
transition: opacity 0.3s ease;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.celeb-famous-card:hover .celeb-famous-card-overlay {
opacity: 1;
}

/*============celeb famous card content========*/
.celeb-famous-card-content {
padding: 16px;
}

.celeb-famous-card-content h4 {
color: #fff;
font-size: 16px;
font-weight: 500;
text-align: center;
line-height: 1.4;
transition: color 0.3s ease;
}

.celeb-famous-card:hover .celeb-famous-card-content h4 {
color: #e84d67;
}


/*
=========faq========
*/

.celeb-faq-container{
margin-top: 48px;
}

.celeb-faq {
background-color: #17202e;
border-radius: 8px;
border: 1px solid #374151; 
overflow: hidden;
}

.celeb-faq-inner {
border-top: 1px solid transparent;
}

.celeb-faq-item {
padding: 24px;
border-top: 1px solid #374151;
transition: background-color 0.3s ease;
}

.celeb-faq-item:first-child {
border-top: none;
}

.celeb-faq-item:hover {
background-color: #1f2937;
}

.celeb-faq-question {
color: #ffffff;
font-weight: 600;
font-size: 18px;
margin-bottom: 12px;
}

.celeb-faq-answer {
color: #d1d5db; 
line-height: 1.6;
font-size: 16px;
}

/*
==========celeb new card===========
*/

.celeb-news-container{
margin-top: 48px;
}

.celeb-news-card-grid{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}

.celeb-news-card {
background: #111827;
border-radius: 8px;
overflow: hidden;
border: 1px solid #374151;
transition: all 0.3s ease;
}

.celeb-news-card:hover {
background: #1f2937;
border-color: #e84d67;
}

.celeb-news-card-image-wrapper{
position: relative;
}

.celeb-news-card-image{
width: 100%;
aspect-ratio: 16 / 9;
transition: transform 0.3s ease;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.celeb-news-card-image img{
width: 100%;
height: 100%;
object-fit: cover;
/* display: block; */
}

.celeb-news-card:hover .celeb-news-card-image {
transform: scale(1.05);
}

.celeb-news-card-gradient {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
opacity: 0;
transition: opacity 0.3s ease;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.celeb-news-card:hover .celeb-news-card-gradient {
opacity: 1;
}

.celeb-news-card-content {
padding: 16px;
}

.celeb-news-card-title {
color: #ffffff;
font-weight: 600;
font-size: 14px;
line-height: 1.4;

display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;

transition: color 0.3s ease;
}

.celeb-news-card:hover .celeb-news-card-title {
color: #e84d67;
}

/*
============CELEB UPCOMING LATEST CONTAINER===========
*/

.celeb-upcoming-latest-container{
margin-top: 48px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 32px;
}

/*============CELEB UPCOMING MV===========*/
.celeb-upcoming-mv {
background-color: #17202e;
border-radius: 8px;
border: 1px solid #374151;
overflow: hidden;
}

.celeb-upcoming-mv-list {
display: flex;
flex-direction: column;
}

.celeb-upcoming-mv-item {
display: flex;
align-items: center;
gap: 16px;
padding: 16px;
border-bottom: 1px solid #374151;
cursor: pointer;
transition: background-color 0.3s ease;
}

.celeb-upcoming-mv-item:last-child {
border-bottom: none;
}

.celeb-upcoming-mv-item:hover {
background-color: #1f2937;
}

.celeb-upcoming-mv-thumb{
width: 64px;
height: 80px;
}

.celeb-upcoming-mv-thumb img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
border: 2px solid #4b5563;
transition: border-color 0.3s ease;
}

.celeb-upcoming-mv-item:hover .celeb-upcoming-mv-thumb img {
border-color: #e84d67;
}

.celeb-upcoming-mv-info {
flex: 1;
}

.celeb-upcoming-mv-title {
color: #ffffff;
font-weight: 600;
font-size: 14px;
line-height: 1.3;
margin-bottom: 4px;
transition: color 0.3s ease;
}

.celeb-upcoming-mv-item:hover .celeb-upcoming-mv-title {
color: #e84d67;
}

.celeb-upcoming-mv-director {
color: #9ca3af;
font-size: 12px;
margin-bottom: 4px;
}

.celeb-upcoming-mv-date {
color: #e84d67;
font-size: 12px;
font-weight: 500;
}

/*
=============CELEB LATEST RELEASE============
*/

.celeb-latest-mv {
background: #17202e;
border: 1px solid #374151;
border-radius: 8px;
overflow: hidden;
}

.celeb-latest-mv-list {
display: flex;
flex-direction: column;
}

.celeb-latest-mv-card {
display: flex;
align-items: center;
gap: 16px;
padding: 16px;
cursor: pointer;
transition: background 0.3s ease;
border-bottom: 1px solid #374151;
}

.celeb-latest-mv-card:last-child {
border-bottom: none;
}

.celeb-latest-mv-card:hover {
background: #1f2937;
}

.celeb-latest-mv-img{
width: 64px;
height: 80px;
}

.celeb-latest-mv-img img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
border: 2px solid #4b5563;
transition: border-color 0.3s ease;
}

.celeb-latest-mv-card:hover .celeb-latest-mv-img img {
border-color: #e84d67;
}

.celeb-latest-mv-info {
flex: 1;
}

.celeb-latest-mv-name {
font-size: 14px;
font-weight: 600;
color: #ffffff;
margin: 0 0 4px 0;
transition: color 0.3s ease;
}

.celeb-latest-mv-card:hover .celeb-latest-mv-name {
color: #e84d67;
}

.celeb-latest-mv-director {
font-size: 12px;
color: #9ca3af;
margin: 0 0 4px 0;
}

.celeb-latest-mv-meta {
display: flex;
align-items: center;
justify-content: space-between;
}

.celeb-latest-mv-meta .date {
font-size: 12px;
color: #9ca3af;
}

.celeb-latest-mv-meta .rating {
font-size: 12px;
font-weight: 500;
color: #e84d67;
}

/*=========================BIO=============================*/
.celeb-bio-container{
padding-top: 24px;
}

.celeb-bio {
background-color: #17202e;
border-radius: 8px;
border: 1px solid #374151;
padding: 24px;
margin-bottom: 32px;
}

.celeb-bio h2 {
color: #ffffff;
font-weight: bold;
font-size: 24px;
margin-bottom: 24px;
}

.celeb-bio-content-inner{
color: #d1d5db; 
line-height: 1.625;
}

.celeb-bio-content-inner p{
margin-bottom: 16px;
}

.celeb-bio-content-inner  h3 {
color: #ffffff;
font-weight: 600;
font-size: 18px;
margin-bottom: 12px;
margin-top: 24px;
}

/*=========CELEB PHOTO CONTAINER==========*/
.celeb-photo-container{
background-color: #17202e;
border-radius: 8px; 
border: 1px solid #374151; 
padding: 24px;  
margin-bottom: 32px;  
}

.celeb-photo{
border-radius: 8px;
overflow: hidden;
background-color: transparent;
transition: background-color 0.3s ease;
margin-bottom: 24px;
}


.celeb-photo:last-child{
margin-bottom: 0px;
}

.celeb-photo:hover {
background-color: #1f2937;
}

.celeb-photo-img-wrapper {
position: relative;
overflow: hidden;
border: 1px solid #4b5563;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
transition: border-color 0.3s ease;
}

.celeb-photo-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: inherit; 
}

.celeb-photo:hover .celeb-photo-img-wrapper {
border-color: #e84d67;
}


.celeb-photo-count {
position: absolute;
top: 16px;
right: 16px;
background-color: rgba(0, 0, 0, 0.8);
color: #ffffff;
padding: 8px 12px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
}

.celeb-photo-content {
padding: 16px;
}

.celeb-photo-title {
color: #ffffff;
font-weight: 500;
font-size: 18px;
margin-bottom: 8px;
transition: color 0.3s ease;
}

.celeb-photo:hover .celeb-photo-title {
color: #e84d67;
}

.celeb-photo-text {
color: #d1d5db;
font-size: 14px;
line-height: 20px;
margin-bottom: 8px;
}

.celeb-photo-source {
color: #9ca3af;
font-size: 12px;
}

/****
======================celeb Birthday page============
****/

/*=========celeb intro section==========*/
.celebs-intro-section{margin-bottom: 32px;padding-bottom: 32px;position: relative;}
.celebs-intro-section:after {content: '';position: absolute;left: 0;right: 0;bottom: 0;margin: auto;background-image: linear-gradient(to right,transparent, #4b5563, transparent);height: 1px;}
.celebs-heading{font-size: 30px;  font-weight: 700; color: var(--text-heading);  margin-bottom: 16px; }

.celebs-container {font-size: 16px; line-height: 26px; color: #9CA3AF;margin-bottom: 16px;}

.read-more-btn{color: #60A5FA;font-size: 16px;font-weight: 500;background: none;border: none;cursor: pointer;transition: color 0.2s ease;}
.read-more-btn:hover {color: #93C5FD;}

.celebs-shareblock-wrapper {display: flex;align-items: center;margin-top: 1rem;margin-top: 1rem;}
.celebs-share-text {color: #9ca3af;font-weight: 500;font-size: 14px;line-height: 1.25rem;position: relative;top: -4px;}
.celebs-shareblock-wrapper a {color: #9ca3af;padding: .5rem;border-radius: .5rem;margin-left: 15px;}
.celebs-shareblock-wrapper a svg {display: block;}
.celebs-shareblock-wrapper a:hover {background-color: #17202e;}
.celebs-shareblock-wrapper a:hover .twitter {color: #60a5fa;}
.celebs-shareblock-wrapper a:hover .facebook {color: #2563eb;}
.celebs-shareblock-wrapper a:hover .instagram {color: #ec4899;}
.celebs-shareblock-wrapper a:hover .youtube {color: #ef4444;}
.celebs-shareblock-wrapper a:hover .sharei {color: #22c55e;}

/*=========search container==========*/

.fb-mv-search-container{
padding: 24px 0px 40px 0px;
}

.fb-mv-search {
position: relative;
width: 100%; 
max-width: 740px;
margin-bottom: 16px; 
}

.fb-mv-search-icon {
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
color: #9ca3af;
pointer-events: none;
}

.fb-mv-search-input {
box-sizing: border-box;
width: 100% ;
padding-left: 40px; 
padding-right: 16px ;
padding-top: 16px ; 
padding-bottom: 16px ;

background-color: #17202e;   
color: #ffffff;    
border-radius: 8px;    
border: 1px solid #374151;

outline: none ;
transition: border-color 0.3s ease, box-shadow 0.3s ease ;

font-size: 14px ;
}

.fb-mv-search-input:focus {
border-color: #e84d67 ;
box-shadow: 0 0 0 2px rgba(232, 77, 103, 0.2) ;
}

.fb-mv-search-input::placeholder{
font-size: 16px ;
}

/*=========celeb bio grid==========*/
.celeb-bio-grid {
display: grid;
grid-template-columns: repeat(2, 1fr); 
gap: 24px; 
margin-bottom: 32px;
}

/*=========celeb bio card==========*/
.celeb-bio-card{
background: #111827;
border-radius: 8px;
overflow: hidden;
border: 1px solid #374151;
transition: all 0.3s ease;
display: flex;
/* cursor: pointer; */
}

.celeb-bio-card:hover {
background: #1f2937;
border-color: #e84d67;
}

.celeb-bio-card-image {
flex-shrink: 0;
width: 144px; 
height: 192px;
position: relative;
overflow: hidden;
}

.celeb-bio-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.celeb-bio-card:hover .celeb-bio-card-image img {
transform: scale(1.05);
}

.celeb-bio-card-image-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to right, transparent, rgba(0,0,0,0.2));
opacity: 0;
transition: opacity 0.3s ease;
}

.celeb-bio-card:hover .celeb-bio-card-image-overlay {
opacity: 1;
}

/*=========celeb bio card content==========*/
.celeb-bio-card-content {
flex: 1;
padding: 16px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.celeb-bio-card-title {
color: #ffffff;
font-weight: 600;
font-size: 16px;
line-height: 1.4;
margin-bottom: 8px;
transition: color 0.3s ease;
}

.celeb-bio-card:hover .celeb-bio-card-title {
color: #e84d67;
}

.celeb-bio-card-sub {
color: #9ca3af;
font-size: 14px;
margin-bottom: 16px;
}

.celeb-bio-card-dob {
color: #9ca3af;
font-size: 14px;
margin-bottom: 8px;
}

.celeb-bio-card-btn {
display: inline-block;
width: auto;
max-width: max-content;
background: #17202e;
color: #d1d5db;
padding: 8px 16px;
border-radius: 6px;
font-size: 12px;
font-weight: 500;
border: 1px solid #4b5563;
transition: all 0.3s ease;
text-align: center;
}

.celeb-bio-card-btn:hover {
background: #e84d67;
border-color: #e84d67;
color: #ffffff;
}


/****
======================celeb Birthday - lang============
****/

.fb-celeb-section-sub{
color: #ffffff;
font-weight: 700;
font-size: 18px;
line-height: 28px;
margin-bottom: 24px;
}

/*============  Calendar Header===========*/
.calendar-header {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
}

/* calender nav btn */
.calendar-btn {
width: 40px;
height: 40px;
border-radius: 8px;
color: #9ca3af; 
background: transparent;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.calendar-btn:hover {
background: #17202e;
color: #ffffff;
}

.calendar-header-text {
margin: 0 32px; 
text-align: center;
}

.calendar-header-text h2 {
color: #ffffff;
font-weight: 700;
font-size: 24px; 
margin: 0;
}

.calendar-header-text p {
color: #9ca3af;
font-size: 14px;
margin-top: 4px;
}

/*============ DATE SCROLLER ===========*/
.date-scroller{
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
margin-bottom: 32px;
}

.scroll-btn{
width: 40px;
height: 40px;
border-radius: 8px;
color: #9ca3af;
background: transparent;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.scroll-btn:hover {
background: #17202e;
color: #ffffff;
}

.scroll-btn.disabled {
color: #4b5563;
cursor: not-allowed;
}

.dates-wrapper {
/* overflow-x: auto;
overflow-y: hidden; */
width: 420px; 
scroll-behavior: smooth;
padding: 10px 3px;
overflow: hidden;
}

.bday-dates-container{
display: flex;
gap: 8px;
width: max-content;
scroll-behavior: smooth;
}

.bday-date {
height: 48px;
width: 48px;
border-radius: 8px;
font-weight: 500;
font-size: 14px;
flex-shrink: 0;
position: relative;
background: #17202e;
color: #ffffff;
border: 1px solid rgba(232, 77, 103, 0.3);
cursor: pointer;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.bday-date:hover {
background: #1f2937;
transform: scale(1.05);
}

.bday-date.active {
background: #e84d67;
color: #ffffff;
box-shadow: 0 2px 3px rgba(232, 77, 103, 0.5);
}

/* Dot */
.bday-date .data-available {
width: 4px;
height: 4px;
border-radius: 50%;
margin: 4px auto 0;
background: #e84d67;
}

.bday-date.active .data-available {
background: #ffffff;
}

/*============ No Data found block ===========*/
.no-data-found {
width: 100%;
height: 154px;
background-color: #111827;  
border-radius: 8px;  
border: 1px solid #374151; 
display: grid;
place-content: center;
text-align: center;
}

.no-data-found-title {
color: #9ca3af; 
font-size: 18px;  
margin-bottom: 8px;  
}

.no-data-found-sub {
color: #6b7280;   
font-size: 14px;     
}

/*============ Active/Inactive ===========*/
#data-found,
#no-data {
display: none; 
}

#data-found.active{
display: grid;
}

#no-data.active {
display: grid;
}




