/* ==================== ON AIR FEATURE STYLES ==================== */

/* ON AIR Badge */
.onair_badge {
    background: linear-gradient(135deg, #FF8C00 0%, #FF5722 100%);
    color: white;
    font-size: 8px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    animation: onAirPulse 2s infinite ease-in-out;
}

.onair_badge i {
    font-size: 7px;
}

/* Pulsing Animation */
@keyframes onAirPulse {
    0% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.9; transform: scale(1); }
}

/* INNER SHADOW for ON AIR user logs (NO background color) */
.onair_log {
    box-shadow: inset 0 0 15px rgba(255, 140, 0, 0.2), inset 0 0 5px rgba(255, 140, 0, 0.3);
    border-left: 3px solid #FF8C00;
}
.profile_avatar{
display: block;
margin: 0 auto;
}
.avatar_spin{
border-radius: 50%;
}
.state_profile{
width: 18px;
height: 18px;
right: 15px;
}
.profile_tinfo{
display: block;
padding: 10px;
}
.pdetails{
text-align: center;
}
#profile_like{
width: auto;
margin: 0 auto;
}








.progress_box {
	background-color: #222;
	padding: 2px;
}

.progress_bar {
	border-radius: 10px;
	background: linear-gradient(
		90deg,
		#ff6b6b,
		#ff8e53,
		#f1c40f,
		#1abc9c,
		#3498db,
		#9b59b6,
		#e74c3c
	);
	background-size: 200%;
	position: relative;
	overflow: hidden;
	animation: rainbow 6s linear infinite;
	font-weight: bold;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
}

.progress_bar.animate {
	animation: slideIn 1.5s ease-in-out forwards, rainbow 6s linear infinite;
}

@keyframes slideIn {
	from {
		width: 0;
	}
	to {
		width: var(--progress-width);
	}
}

@keyframes rainbow {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

.progress_bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.3) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, 0.3) 50%,
		rgba(255, 255, 255, 0.3) 75%,
		transparent 75%,
		transparent
	);
	background-size: 40px 40px;
}





/* For modern browsers */
#reg_username::placeholder,
#reg_password::placeholder {
    color: #000000;
    opacity: 1; /* Ensures color is applied in Firefox */
}

/* For older browsers (Internet Explorer 10-11) */
#reg_username:-ms-input-placeholder,
#reg_password:-ms-input-placeholder {
    color: #000000;
}

/* For Microsoft Edge legacy (pre-Chromium) */
#reg_username::-ms-input-placeholder,
#reg_password::-ms-input-placeholder {
    color: #000000;
}

/* Target the username input placeholder */
#guest_username::placeholder {
    color: #000000 !important;
    opacity: 1; /* Ensures color is fully applied */
}

/* For older browser compatibility */
#guest_username::-webkit-input-placeholder {
    color: #000000 !important;
}
#guest_username::-moz-placeholder {
    color: #000000 !important;
}
#guest_username:-ms-input-placeholder {
    color: #000000 !important;
}

* Make typed text black */
#guest_username {
    color: #000000 !important;
}

/* Make placeholder text black */
#guest_username::placeholder {
    color: #000000 !important;
    opacity: 1;
}

/* Browser compatibility for placeholder */
#guest_username::-webkit-input-placeholder {
    color: #000000 !important;
}
#guest_username::-moz-placeholder {
    color: #000000 !important;
}
#guest_username:-ms-input-placeholder {
    color: #000000 !important;
}





#chat_right{
    width: 235px !important;
    min-width: 235px !important;
    max-width: 235px !important;
}



.syswelcome.bclick {
    background: red;
    padding: 2px 6px;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
}
/* your custom style here */


element.style {
}
#show_chat ul {
    position: absolute;
    bottom: 0;
    max-height: 100%;
    overflow-y: auto;
    padding-bottom: 10px;
}
#show_chat ul {
    width: 100%;
    position: relative;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(136, 136, 136, .3) transparent;
}
* {
    box-sizing: border-box;
}
user agent stylesheet
:is(dir, menu, ol, ul) ul {
    list-style-type: circle;
}
user agent stylesheet
:is(dir, dl, menu, ol, ul) ul {
    margin-block-start: 0px;
    margin-block-end: 0px;
}
user agent stylesheet
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
user agent stylesheet
ul {
    list-style-type: disc;
}
body {
    background: #ededed;
    color: #333;
}
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif, 'trebuchet ms', 'lucida grande', 'lucida sans unicode', arial, helvetica;
    font-size: 14px;
    width: 100%;
    height: 100%;
}
*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background-color: rgba(136, 136, 136, 0.5);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}
*::-webkit-scrollbar-track {
    background: transparent !important;
    box-shadow;
}






/* topic log wrapper */
/* Chatkeeda Welcome Topic Design - Perfect Fit (No Width Overflow) */
/* Add this CSS to your existing stylesheet */

/* Main topic log container - full width constrained */
.other_logs.topic_log {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    position: relative;
    animation: fadeInUp 0.45s ease-out;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Topic Box - fits parent width perfectly */
.topic_box {
    background: linear-gradient(145deg, #ffffff 0%, #fef5f8 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 120, 160, 0.25);
    box-shadow: 0 8px 20px rgba(255, 80, 120, 0.1), 0 1px 4px rgba(0, 0, 0, 0.03);
    padding: 20px 20px 22px 20px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Decorative hearts on the sides - subtle and contained */
.topic_box::before {
    content: "❤️";
    position: absolute;
    top: 15px;
    left: 12px;
    font-size: 18px;
    opacity: 0.2;
    pointer-events: none;
    animation: floatHeart 3s ease-in-out infinite;
}

.topic_box::after {
    content: "❤️";
    position: absolute;
    bottom: 15px;
    right: 12px;
    font-size: 22px;
    opacity: 0.18;
    pointer-events: none;
    animation: floatHeart 4s ease-in-out infinite reverse;
}

/* Welcome Label - fits within container */
.topic_label {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff2e5e, #ff6b3c, #ff2e5e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    animation: gradientFlow 3s ease infinite;
    width: 100%;
    box-sizing: border-box;
}

/* Underline decoration under welcome text */
.topic_label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #ff8ab5, #ff5e8e, #ff8ab5);
    border-radius: 3px;
}

/* Hide the GIF image to keep design clean */
.topic_gif {
    display: none;
}

/* Main message container - fits perfectly */
.topic_message {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #2c2e3a;
    background: linear-gradient(135deg, #fff9fb, #fff5f8);
    padding: 16px 18px;
    border-radius: 22px;
    margin-top: 8px;
    border: 1px solid #ffdfea;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 2px 8px rgba(255, 80, 120, 0.05);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

/* Style for strong/bold text inside message */
.topic_message strong, 
.topic_message b {
    color: #ff3b6f;
    font-weight: 700;
    background: rgba(255, 59, 111, 0.08);
    padding: 2px 8px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 2px;
    font-size: 0.9rem;
}

/* Level badge / VIP badge styling */
.topic_message .level-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ffecf0;
    border-radius: 40px;
    padding: 3px 10px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #e6437a;
    margin: 0 3px;
    border: 1px solid #ffcddd;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .topic_message .level-badge {
        white-space: normal;
        display: inline-flex;
    }
}

.topic_message .level-badge i {
    color: #ff9f4a;
    font-size: 0.75rem;
}

/* VIP highlight */
.topic_message .vip-highlight {
    background: linear-gradient(135deg, #ffd966, #ffbf3c);
    color: #6b3a00;
    padding: 2px 10px;
    border-radius: 35px;
    font-weight: 800;
    display: inline-block;
    margin: 0 3px;
    font-size: 0.8rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Heart emoji animation */
.topic_message span.heart-emoji {
    font-size: 1rem;
    display: inline-block;
    animation: heartbeat 1.2s ease infinite;
}

/* Close button (X) - top right, fits within box */
.special_delete.add_cursor.topic_close {
    position: absolute;
    top: 12px;
    right: 14px;
    cursor: pointer;
    background: rgba(255, 235, 240, 0.95);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: 1px solid #ffbfd0;
    color: #ff6688;
    font-size: 12px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.special_delete.add_cursor.topic_close:hover {
    background: #ff4d7a;
    border-color: #ff4d7a;
    color: white;
    transform: scale(1.03);
    box-shadow: 0 2px 6px rgba(255, 77, 122, 0.25);
}

/* Animations */
@keyframes floatHeart {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.18; }
    50% { transform: translateY(-5px) rotate(3deg); opacity: 0.3; }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

/* Responsive adjustments for smaller screens */
@media (max-width: 550px) {
    .other_logs.topic_log {
        margin: 15px 0;
    }
    .topic_box {
        padding: 16px 14px 18px 14px;
        border-radius: 20px;
    }
    .topic_label {
        font-size: 1.3rem;
        padding-bottom: 8px;
    }
    .topic_label::after {
        width: 55px;
        height: 2.5px;
    }
    .topic_message {
        font-size: 0.85rem;
        padding: 14px 14px;
        border-radius: 18px;
    }
    .special_delete.add_cursor.topic_close {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    .topic_message strong, .topic_message b {
        padding: 2px 6px;
        font-size: 0.82rem;
    }
    .topic_box::before {
        font-size: 14px;
        top: 10px;
        left: 8px;
    }
    .topic_box::after {
        font-size: 16px;
        bottom: 10px;
        right: 8px;
    }
}

/* Ensure no horizontal scroll on any container */
.topic_message br {
    display: block;
    content: "";
    margin: 5px 0;
}

/* Remove any extra spacing that might cause overflow */
.topic_message * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Welcome highlight line */
.topic_message .welcome-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: #ff2e5e;
    display: block;
    margin-bottom: 10px;
}

/* Subtle heart pattern background - stays contained */
.topic_box {
    background-image: radial-gradient(circle at 15% 25%, rgba(255, 180, 200, 0.08) 2px, transparent 2px);
    background-size: 20px 20px;
}

/* Ensure parent containers don't cause overflow */
.other_logs {
    overflow-x: hidden;
}

.topic_box,
.topic_message,
.topic_label {
    overflow-x: hidden;
}
</style>





.post_video {
  display: table;
  table-layout: fixed;
  height: auto;
  width: 200px;
  margin: 1px 0;
}
.my_notice {
    color: #fff;
    background: #ff5c00;
}



/* --- Guest Login Box --- */
/* Guest Login Modal Design - Clean, Modern, Matches Previous Style */
/* All buttons same width and style */
.custom_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%; /* full width */
    max-width: 280px; /* fixed max width */
    margin: 8px auto; /* center & spacing */
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Gradient colors for each button */
#t1 { background: linear-gradient(45deg, #FF416C, #FF4B2B); }  /* Pink-Red */
#t2 { background: linear-gradient(45deg, #00C9FF, #92FE9D); }  /* Blue-Green */
#t3 { background: linear-gradient(45deg, #6A11CB, #2575FC); }  /* Purple-Blue */
#t4 { background: linear-gradient(45deg, #FDC830, #F37335); }  /* Orange-Yellow */

/* Hover effect */
.custom_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

/* FontAwesome icon size */
.custom_btn i {
    font-size: 18px;
}




/*!
.avatar_wrapper {
    position: relative;
    display: inline-block;
    width: 50px; /* avatar size */
    height: 50px;
}

.avatar_wrapper img.avav {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    z-index: 1;
}

.avatar_wrapper img.avatar_frame {
    position: absolute;
    top: -6%;
    left: -8%;
    width: 114%;
    height: 108%;
    pointer-events: none;
    border-radius: 50%;
    z-index: 2;
}

.frames_modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: #111;
    border: 2px solid #444;
    border-radius: 10px;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.frames_container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.frame_item {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 50%;
    overflow: hidden;
}



/* === Default Sticker Style (unchanged) === */
.user_sticker {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  vertical-align: middle;
}

/* === Special Verified Badges === */
.user_sticker[src*="verify.png"],
.user_sticker[src*="yellow.png"],
.user_sticker[src*="gray.png"] {
  width: 10px !important;
  height: 10px !important;
  vertical-align: text-top !important;
  margin-left: 4px !important;
  position: relative;
  top: 1px; /* makes it align like a Facebook tick */
}






/* Login Success Popup */
#login_success_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: all 0.3s ease;
}

.login_success_hidden {
    visibility: hidden;
    opacity: 0;
}

.login_success_box {
    background: #fff;
    width: 360px;
    text-align: center;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.4);
    animation: popin 0.4s ease;
}

@keyframes popin {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.check_mark {
    font-size: 55px;
    color: #2ecc71;
    margin-bottom: 10px;
}

.green_bar {
    width: 0%;
    height: 5px;
    background: #2ecc71;
    border-radius: 5px;
    margin-top: 20px;
}

.animate_bar {
    animation: fillbar 2.5s linear forwards;
}

@keyframes fillbar {
    from { width: 0%; }
    to { width: 100%; }
}

/* Highlight chat log if user is on air */
.chat_on_air {
    box-shadow: inset 0 0 10px rgba(255,165,0,0.3); /* soft orange inset shadow */
    border-radius: 5px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.private_admin_box{
    max-width: 900px;
    margin: auto;
}

.pm_row{
    background: #f7f7f7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.pm_users{
    font-size: 13px;
    margin-bottom: 6px;
}

.pm_from{
    color: #1a73e8;
    font-weight: 600;
}

.pm_to{
    color: #d93025;
    font-weight: 600;
}

.pm_message{
    background: #fff;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.4;
}

.pm_time{
    font-size: 11px;
    color: #888;
    margin-top: 6px;
    text-align: right;
}






/* OnAir special log */
.onair_log {
    background: #fff9e6;  /* Light warm background */
    border-left: 4px solid #ffb347; /* Orange accent line */
    padding: 5px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}

/* OnAir avatar badge */
.onair_badge {
    display: inline-block;
    background: #ffb347;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 1px 4px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

/* OnAir message wrapper */
.onair_text .chat_message {
    background: #fff4cc;
    padding: 6px 8px;
    border-radius: 5px;
}

/* Optional: glow effect for OnAir log */
.onair_log:hover {
    box-shadow: 0 0 8px rgba(255, 180, 71, 0.6);
}







