@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	/* body ve gece renkler*/
	/*--bodyYeniRenk:rgb(240,247,255);*/
	--bodyYeniRenk: #f3f3f3;
	--body: #fff;
	--bodyheader: #565678; /* varsayilan ust koyu renk*/
	--bodyhcolor: #fff; /* yazi renkleri beyaz*/
	--bodygece: #282828;
	--bodygececolor: #F3F5F9;
	--bodygecebildirim: #4b4b4b;
	--bodylogo: #bad3ff;
	--bodycolor: black;
	--bodykenar: darkgray;
	--bodyrenk: #FFFFFF;
	--mobilarkaplan: rgb(240, 247, 255);
	--nickler: rgb(240, 247, 255);
	--scrollwidth: 5px;
	/* yetkili renkleir*/
	--founder: #de335d;
	--sop: #f57c51;
	--op: #3a80a3;
	--halfop: #5ab981;
	--voice: #f7be5b;
	--user: #555555;

	/* tema renk2 */
	--renk2body: #c81409;
	--renk2arkaplan: #fff6f5;
	--renk2color: #fcf1f0;

	/* tema renk3 */
	--renk3body: #BE5103;
	--renk3arkaplan: #fffcf3;
	--renk3color: #fffdf6;

	/* tema renk4 */
	--renk4body: #8C52FF;
	--renk4arkaplan: #e1d2ff;
	--renk4color: #e9ddff;

	/* tema renk5 */
	--renk5body: #00b39c;
	--renk5arkaplan: #fff;
	--renk5color: #fff;

	/* tema renk6 */
	--renk6body: rgba(20, 20, 25, 0.85);
	--renk6arkaplan: #CCCCCC;
	--renk6color: #F5F5F5;
	--renk6yazirenk: #00ecff;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', 'sans-serif';
	/* font-family: 'Lato',Tahoma,Arial; */
	background: #fff;
	overflow: hidden;
}

/* Genel Arkaplan */
.acilis {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(1deg, #1abc9c, #333548);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 4;
	font-family: 'Arial', sans-serif;
}

/* Ana Kutu */
.acilis .baglanti {
	width: 400px;
	background-color: #ffffff;
	color: #1d1e2c;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	transform: scale(0.9);
	animation: popIn 0.5s ease-out forwards;
}

@keyframes popIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* BaÅŸlÄ±k */
.acilis .baslik h1 {
	font-size: 24px;
	margin-bottom: 10px;
	color: #333;
}

/* Logo */
.acilis .bilgiler .logo {
	width: 200px;
	height: auto;
	margin-bottom: 15px;
	animation: rotateIn 1s ease-out;
}

@keyframes rotateIn {
	0% {
		transform: rotate(-360deg);
		opacity: 0;
	}

	100% {
		transform: rotate(0deg);
		opacity: 1;
	}
}

/* Genel Emoji AlanÄ± */
.emoji-selector::-webkit-scrollbar {
	width: 3px;
}

.emoji-selector::-webkit-scrollbar-thumb {
	background: var(--bodylogo);
	color: var(--body);
	border-radius: 10px;
}

.emoji-selector {
	margin: 20px 0;
	text-align: center;
	height: 150px;
	overflow: auto;
}

/* Emoji Listesi */
.emoji-selector {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	/* 6 sÃ¼tun */
	gap: 10px;
	max-height: 200px;
	/* YÃ¼kseklik sÄ±nÄ±rÄ± */
	overflow-y: auto;
	/* Dikey scroll */
	padding: 10px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
	background: #e6f7ff;
	/* FarklÄ± arka plan */
	border: 1px solid #0096c7;
}

/* Emoji Kutusu */
.emoji {
	font-size: 20px;
	padding: 2px;
	background: #ececec;
	border: 2px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.emoji img {
	width: 32px;
	height: 32px;
}

.emoji:hover {
	transform: scale(1.2);
	background: #ffd700;
}

.emoji-selector .selected {
	border-color: #1d1e2c;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {

	0%,
	100% {
		transform: scale(1.2);
	}

	50% {
		transform: scale(1.4);
	}
}

/* SeÃ§ilen Emoji MesajÄ± */
/* Modal TasarÄ±mÄ± */
.emojibar {
	font-family: Arial, sans-serif;
	text-align: center;
	padding: 10px;
}

.emojibar .avatarsecim {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 15px;
}

/* İkonun temel hali ve parlama efekti */
#onlinedurum i {
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 5px currentColor);
}

/* Durum Renkleri */
.color-online {
	color: #23a55a !important;
}

.color-dnd {
	color: #f23f43 !important;
}

.color-away {
	color: #f0b232 !important;
}

.color-food {
	color: #ff8c00 !important;
}

.color-stream {
	color: #593695 !important;
}

.color-sleep {
	color: #1e4463 !important;
}

/* Select kutusunu modernleştirme */
#durumonline {
	background: rgba(255, 255, 255, 0.05);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	padding: 2px 5px;
	outline: none;
	cursor: pointer;
}

#durumonline option {
	background: #1e1f22;
	/* Açılır menü arka planı */
	color: white;
}

#durumonline:hover {
	border-color: rgba(120, 200, 255, 0.7);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 0 10px rgba(120, 200, 255, 0.35);
}

#durumonline:focus {
	border-color: #78c8ff;
	box-shadow: 0 0 0 2px rgba(120, 200, 255, 0.2), 0 0 14px rgba(120, 200, 255, 0.45);
}

.avatardegis {
	width: 90%;
	padding: 8px 12px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 12px;
	background: rgba(255, 255, 255, 0.08);
	/* mavi arkaplanda soft cam etkisi */
	color: #eaf6ff;
	border: 1px solid rgba(120, 200, 255, 0.35);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 6px rgba(120, 200, 255, 0.15);
	transition: all 0.25s ease;
	backdrop-filter: blur(4px);
	outline: none;
}

.avatardegis:hover {
	border-color: rgba(120, 200, 255, 0.7);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 0 10px rgba(120, 200, 255, 0.35);
}

.avatardegis:focus {
	border-color: #78c8ff;
	box-shadow: 0 0 0 2px rgba(120, 200, 255, 0.2), 0 0 14px rgba(120, 200, 255, 0.45);
}

.emojibar .item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.emojibar .checkbox-label {
	font-size: 14px;
	background-color: #f0f0f0;
	padding: 8px 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}

.emojibar .checkbox-label:hover {
	background-color: #d0d0d0;
	transform: scale(1.05);
}

.emojibar input[type="checkbox"] {
	display: none;
}

.emojibar input[type="checkbox"]:checked+.checkbox-label {
	background-color: #4caf50;
	color: white;
	font-weight: bold;
}

.emojibar .profilsecim img {
	width: 250px;
	border-radius: 5px;
	border: 2px solid #ddd;
}

.emojibar #avatarresim img {
	width: 30px;
	height: auto;
}

.emojibar .emoji-panel-div-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	height: 200px;
	overflow: auto;
}

.emojibar .emoji-item img {
	border-radius: 50%;
	transition: transform 0.2s;
}

.emojibar .emoji-item:hover img {
	transform: scale(1.2);
	cursor: pointer;
}

/* Input ve Buton */
.acilis .bilgiler input {
	width: 100%;
	padding: 12px;
	margin-bottom: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 15px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.acilis .bilgiler button {
	padding: 12px 20px;
	background: linear-gradient(135deg, #1d1e2c, #3c3e54);
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	font-size: 18px;
	transition: all 0.3s ease;
}

.acilis .bilgiler button:hover {
	background: #56577a;
}

.header {
	position: absolute;
	top: 0;
	left: 0px;
	width: 200px;
	height: 50px;
	background: #2d0448;
	color: var(--bodyhcolor);
	border-bottom: 1px solid var(--bodykenar);
	padding: 0px 9px;
	display: flex;
	align-items: center;
	font-size: 15px;
	background-color: '';
	background-size: fill;      /* resmi yay */
    background-position: center; /* ortala */
    background-repeat: no-repeat;/* tekrar etmesin */
}

.header .mobilmenulist {
	display: none;
}

.header .header-col-logo {
	flex: 0 0 190px;
	border-right: 1px solid var(--bodykenar);
	text-align: center;
}

.header .nickemoji {
	font-size: 21px;
	background: var(--body);
	color: var(--bodycolor);
	border-radius: 10px;
	margin-right: 5px;
}

.header .nickemoji img {
	width: 30px;
	height: 30px;
	position: relative;
	top: 10px;
}

.emojisecim img {
	width: 30px;
	height: 30px;
}

.header .mnickemoji {
	font-size: 21px;
	color: var(--bodycolor);
	border-radius: 10px;
	margin-right: 5px;
}

.header .mnickemoji img {
	width: 25px;
	height: 25px;
}

.header .header-col-button-nick {
	flex: 0 0 190px;
	text-align: center;
	color: var(--bodyhcolor);
	letter-spacing: 1px;
	/* padding: 0px 10px; */
	border-right: 1px solid silver;
	font-size: 13.5px;
}

.header .header-col-button {
	flex: 0 0 auto;
	text-align: center;
	color: var(--bodyhcolor);
	letter-spacing: -1px;
	padding: 0px 10px;
	border-right: 1px solid silver;
	font-size: 13.5px;
}

.header .header-col-button i {
	margin-right: 5px;
}

.header .header-col-button-r {
	flex: 0 0 80px;
	text-align: center;
	color: var(--bodyhcolor);
	letter-spacing: -1px;
	padding: 0px 10px;
	border: 1px solid silver;
	font-size: 13.5px;
	margin-left: auto;
	padding: 5px;
	border-radius: 10px;
	margin-right: 10px;
}

.header .header-col-button-r i {
	margin-right: 5px;
}


#aktifekran {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    
    /* VURUCU KOYU YEŞİL RENK */
    color: #006600; /* Biraz daha derin bir yeşil */
    
    /* GLASS (CAM) EFEKTİ İÇİN YUMUŞAK GÖLGE */
    /* Sert siyah konturlar (1px 1px 0px #000) tamamen kaldırıldı.
       Bunun yerine çok hafif ve geniş bir aura kullanıyoruz. */
    text-shadow: 
        0 0 10px rgba(0, 102, 0, 0.4),  /* Yazının hemen dibinde hafif yeşil parlama */
        0 0 20px rgba(0, 0, 0, 0.15),   /* Beyaz zeminde derinlik için çok hafif siyah sis */
        0 0 35px rgba(0, 102, 0, 0.1);  /* Çok geniş ve şeffaf yeşil aura */
    
    /* Nabız animasyonu daha yumuşak ve yavaş */
    animation: neonPulse 4s ease-in-out infinite;
   
    text-align: center;
    line-height: 1.3;
    max-width: 90%;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 102, 0, 0.4),
            0 0 20px rgba(0, 0, 0, 0.15),
            0 0 35px rgba(0, 102, 0, 0.1);
    }
    50% {
        /* Parlama anında bile opaklık düşük kalır */
        text-shadow: 
            0 0 15px rgba(0, 102, 0, 0.5),
            0 0 25px rgba(0, 0, 0, 0.2),
            0 0 45px rgba(0, 102, 0, 0.15);
    }
}
#aktifekran b {
    color: #00ffff;
    font-weight: 900;
    
    /* NEON IŞIK EFEKTİ */
    text-shadow: 
        /* 1. Katman: Merkeze yakın, çok parlak beyaz ışık (Lamba teli gibi) */
        0 0 5px #fff, 
        
        /* 2. Katman: Turkuaz ana parlama */
        0 0 10px rgba(0, 255, 255, 0.9), 
        
        /* 3. Katman: Orta mesafeli güçlü aura */
        0 0 20px rgba(0, 255, 255, 0.7), 
        
        /* 4. Katman: Geniş ve yumuşak yayılma (Işığın odaya dağılması gibi) */
        0 0 35px rgba(0, 200, 255, 0.4), 
        
        /* 5. Katman: Beyaz zeminde harfi ayırmak için en alta çok ince siyah kontur */
        1px 1px 1px rgba(0, 0, 0, 0.3);

    /* Işığın hafifçe titremesi (Opsiyonel: Daha gerçekçi bir lamba etkisi için) */
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.3) drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
    }
}
.header .aktifnick,
.header .aktifekran {
	width: 20%;
	text-align: center;
	margin-right: 10px;
	display: flex;
	font-size: 13px;
	background: rgba(255, 255, 255, 0.08);
	/* soft cam efekti */
	color: #eaf6ff;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid rgba(120, 200, 255, 0.35);
	border-right: 1px solid var(--bodykenar);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 6px rgba(120, 200, 255, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.25s ease;
	
}

.header .head {
	padding: 10px 5px;
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border: none;
	font-size: 15px;
	border-radius: 2px;
}

.header .temalar {
	padding: 10px;
	background: var(--arkaplan);
	border-radius: 9px;
}

.header .temalar [class^="renk"] {
	cursor: pointer;
}

.header .temalar [class^="renk"] i:hover {
	opacity: 0.6;
}

.header .temalar i {
	margin-right: 0 !important;
}

.header .fa-sliders {
	font-size: 19px;
	border-right: 1px solid silver;
	padding: 15px 10px;
}

.header .renk1 {
	background: var(--bodyheader);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}

.header .renk2 {
	background: var(--renk2body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}

.header .renk3 {
	background: var(--renk3body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}

.header .renk4 {
	background: var(--renk4body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}

.header .renk5 {
	background: var(--renk5body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}

.header .renk6 {
	background: var(--renk6body);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 20px;
	color: white;
}

.temaaktif::before {
	content: "\f00c";
	font-family: 'FontAwesome';
	font-size: 24px;
	color: white;
	position: absolute;
	transform: translate(-50%, -50%);
	margin-left: 10px;
	margin-top: 10px;
}

.solbar::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.solbar::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}

.solbar {
	display: block;
	position: absolute;
	top: 50px;
	left: 0px;
	width: 200px;
	height: 400px;
	background: var(--bodyheader);
	color: var(--body);
	border-right: 1px solid var(--bodykenar);
	z-index: 2;
	overflow: hidden;
	overflow-y: auto;
}

/* Ana Solbar Genel Ayarlar */
.solbar {
	z-index: 2;
	overflow-x: hidden;
	overflow-y: auto;
}

/* MOBİL MENÜYÜ GİZLİ TUT (Senin kodundaki gibi) */
.solbar .mobilsolbar {
	display: none;
}

/* BİLGİSAYAR GÖRÜNÜMÜ (Sadece burayı düzenliyoruz) */
.solbar .pcsolbar {
	display: block;
	padding: 5px;
}

/* Üst Kısım: Sadece pcsolbar içindeki elemanları ortalar */
.solbar .pcsolbar .ust {
	display: flex;
	flex-direction: column;
	/* Üst üste dizim */
	align-items: center;
	/* Yatayda TAM ORTA */
	justify-content: center;
	width: 100%;
	margin-top: 10px;
	padding: 0;
}

/* NICKEMOJI: Yuvarlak Resim Kutusu */
.solbar .pcsolbar .ust .nickemoji {
	flex: 0 0 100px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	/* Resim dışarı taşmaz */
	/* Neon & Cam Efekti */
	border: 2px solid rgba(120, 200, 255, 0.4);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 8px rgba(120, 200, 255, 0.25);
	background: linear-gradient(145deg, rgba(120, 200, 255, 0.25), rgba(0, 60, 120, 0.4));
	backdrop-filter: blur(4px);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.25s ease;
	padding: 3px;
	/* İçeriye doğru 10px boşluk verir, resim merkeze küçülür */
	box-sizing: border-box;
	/* Padding'in kutuyu büyütmesini engeller, 100px'de sabit tutar */
}

/* Resim: Kutu içine hapsolur */
.solbar .pcsolbar .ust .nickemoji img {
	/* Resim artık dış kutunun %100'ünü değil, padding'den kalan alanı doldurur */
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

/* Hover Efekti */
.solbar .pcsolbar .ust .nickemoji:hover {
	transform: translateY(-3px);
	border-color: rgba(120, 200, 255, 0.8);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45), 0 0 14px rgba(120, 200, 255, 0.45);
}

/* Buton ve Select Kutuları */
.solbar .pcsolbar .ust .solbtndiv {
	width: 100%;
	text-align: center;
	margin-top: 10px;
}

.solbar .pcsolbar .ust .solbtndiv button,
.solbar .pcsolbar .ust .solbtndiv select {
	width: 90%;
	margin-bottom: 6px;
	padding: 8px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.08);
	color: #eaf6ff;
	border: 1px solid rgba(120, 200, 255, 0.35);
	backdrop-filter: blur(4px);
	outline: none;
	font-size: 12px;
}

/* İzinler: Beyaz kutu */
.solbar .pcsolbar .izinler {
	background: white;
	display: flex;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	color: black;
	font-size: 11px;
	height: 25px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.solbar .pcsolbar .izinler .sesizin {
	flex: 0 0 50%;
}

.solbar .pcsolbar .izinler .kameraizin {
	flex: 0 0 50%;
}

.solbar .pcsolbar .izinler .fa-circle-xmark {
	color: red;
}

.solbar .pcsolbar .izinler .fa-check {
	color: green;
}

.solbar .pcsolbar .online {
	font-size: 14px;
	text-align: center;
	padding: 5px;
	width: 100%;
}

.solbar .pcsolbar #onlinedurum {
	font-size: 12px;
	color: green;
	background: white;
	padding: 1px 5px;
	border-radius: 5px;
}

.solbar .pcsolbar .online select {
	width: 60%;
	border-radius: 10px;
	padding: 5px;
}

.solbar .pcsolbar .arkadaslist {
	display: flex;
	font-size: 13px;
	background: rgba(255, 255, 255, 0.08);
	/* soft cam efekti */
	color: #eaf6ff;
	padding: 5px;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid rgba(120, 200, 255, 0.35);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 6px rgba(120, 200, 255, 0.15);
	backdrop-filter: blur(4px);
	transition: all 0.25s ease;
}

.solbar .pcsolbar .arkadaslist div {
	cursor: pointer;
	padding: 5px 8px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.05);
	color: #eaf6ff;
	border: 1px solid rgba(120, 200, 255, 0.2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(120, 200, 255, 0.1);
	transition: all 0.25s ease;
}

.solbar .pcsolbar .arkadaslist div:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(120, 200, 255, 0.7);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 0 10px rgba(120, 200, 255, 0.35);
}

.solbar .pcsolbar .arkadaslist .alist-acik {
	background: rgba(0, 0, 0, 0.6);
	color: #78c8ff;
	border: 1px solid #78c8ff;
	box-shadow: 0 0 8px rgba(120, 200, 255, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.solbar .pcsolbar .arkadaslist p {
	margin: 0;
}

.solbar .pcsolbar .aul {
	display: none;
	margin: 0;
	margin-left: -40px;
	margin-top: 5px;
}

.solbar .pcsolbar .aul-acik {
	display: block;
}

.solbar .pcsolbar .aul .arkadas {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	border-bottom: 1px solid #f9f6f6;
	background: white;
	color: black;
	padding: 0px 5px;
	font-size: 14px;
}

.solbar .pcsolbar .aul .arkadas .arkadasname {
	text-align: left;
	margin: 0;
	flex: 0 0 60%;
	cursor: pointer;
}

.solbar .pcsolbar .aul .arkadas .arkadasonline {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: black;
}

.solbar .pcsolbar .aul .arkadas .arkadassil {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: #E91E63;
	cursor: pointer;
}

.solbar .pcsolbar .aul .arkadas .arkadaskabul {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: green;
	cursor: pointer;
}

.solbar .pcsolbar .aul .arkadas .arkadasred {
	text-align: center;
	margin: 0;
	flex: 0 0 20%;
	color: #E91E63;
	cursor: pointer;
}

.nickler ul::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.nickler ul::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}

.nickler {
	display: none;
	position: absolute;
	color: white;
	width: 200px;
	height: 550px;
	right: 200px;
	top: 50px;
	margin: 0;
	
	background-color: var(--bodyrenk);
	padding-left: 5px;
	border-left: 1px solid gray;
}

.nickler .nicktara {
	position: fixed;
	top: 54px;
	right: 200px;
	width: 198px;
	background: #fafaff;
	color: var(--bodykenar);
	border-bottom: 1px solid var(--bodykenar);
	border-left: 1px solid var(--bodykenar);
	display: flex;
	align-items: center;
	margin: 0 auto;
	height: 37px;
	padding: 0 3px;
}

/*Ben degistim ben ekleidm alttakini */
.nicktara span {
	padding-left: 5px;
}

.nickler .nicktara span {
	margin-right: 5px;
}

.nickler .nicktara input[type="text"] {
	color: var(--bodycolor);
	width: 100%;
	box-sizing: border-box;
	background: transparent;
	border: none;
	padding: 5px 0px;
	padding-left: 5px;
	outline: 0;
}

.nickler .kenarakaydir {
	display: none;
	position: absolute;
	background: #0372b9;
	color: #ffffff;
	z-index: 8;
	right: 110px;
	top: 50%;
	font-size: 20px;
	padding: 5px 5px;
	border-radius: 10px 0px 0px 10px;
}

.nickler ul {
	position: relative;
	top: 44px;
	display: none;
	/*border-left: 1px solid var(--bodykenar);*/
	width: 102%;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	padding: 0;
	margin: 0;
	/*margin-left: 5px;*/
	/* ben degistim*/
	/*padding-left: 5px;*/
	/* ben degistim*/
}

.nickler .nactive {
	display: block;
	background-color: var(--bodyrenk);
}

.nickler ul .nick {
	display: flex;
	align-items: center;
	margin: 2px 5px;
	position: relative;
	color: #000000;
	font-size: 13px;
	cursor: default;
	-webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Eski Edge */
    user-select: none;
}

.nickler ul .nickselected {
	background: #D6D6D6 !important;
}

.nickler ul .nick .donline {
	width: 11px;
	position: absolute;
	height: 12px;
	z-index: 1;
	border-radius: 20px;
	left: -4px;
	top: 4px;
}

.nickler ul .nick .arkaplan {
	width: 25px;
	height: 25px;
	font-size: 16px;
	border-radius: 50%;
	margin-right: 5px;
	flex: 0 1 25px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	text-align: center;
}

.nickler ul .nick .arkaplan img {
	width: 26px;
	height: 25px;
	position: relative;
	top: 3px;
	border-radius: 50%;

}

.nickler ul .nick .isim {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 500;
	flex: 0 1 100%;
}

.nickler ul .nick.v {
	color: var(--voice);
}

.nickler ul .arkaplan.v {
	/* background-image: url(../images/voice.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.h {
	color: var(--halfop);
}

.nickler ul .arkaplan.h {
	/* background-image: url(../images/halfop.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.o {
	color: var(--op);
}

.nickler ul .arkaplan.o {
	/* background-image: url(../images/op.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.a {
	color: var(--sop);
}

.nickler ul .arkaplan.a {
	/* background-image: url(../images/sop.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.nickler ul .nick.q {
	color: var(--founder);
}

.nickler ul .arkaplan.q {
	/* background-image: url(../images/founder.svg); */
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.pencereler {
	position: absolute;
	background-color: #fafaff;
	color: var(--bodycolor);
	width: 200px;
	height: 550px;
	right: 0px;
	top: 50px;
	border-left: 1px solid var(--bodykenar);
	;padding: 0;
	overflow: auto;
}

.pencereler .logo {
	background: var(--bodylogo);
	width: 100%;
	text-align: center;
	height: 50px;
	padding: 10px 0;
}

.pencereler .logo img {
	width: auto;
	height: 50px;
}

.pencereler .baslik {
	padding: 5px 10px;
	text-align: left;
	border-bottom: 1px solid #b1ccf9;
	margin: 5px 0px;
}

.pencereler .kanallar::-webkit-scrollbar {
	width: 3px;
}

.pencereler .kanallar::-webkit-scrollbar-thumb {
	background: var(--bodylogo);
	color: var(--body);
	border-radius: 10px;
}

.pencereler /* Kanal Öğeleri - Daha Açık ve Canlı Gradyan */
.kanallar div {
  padding: 6px 8px; 
  /* Çok açık zeminde koyu gri/mavi yazı daha profesyonel durur */
  color: #34495e; 
  font-family: "Poppins", sans-serif;
  font-size: 8px; 
  font-weight: 800;
  }

.pencereler .kanallar .kanal {
	color: #1e72ff;
	font-weight: 400;
	border-radius: 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 7px;
	margin: 0px 5px;
	font-size: 15px;
	cursor: pointer;

}

@keyframes dots {

	0%,
	20% {
		content: ".";
		transform: rotate(0deg);
	}

	40% {
		content: "..";
		transform: rotate(90deg);
	}

	60% {
		content: "...";
		transform: rotate(180deg);
	}

	80% {
		content: "";
		transform: rotate(270deg);
	}

	100% {
		content: "";
		transform: rotate(360deg);
		/* Tam bir dÃ¶nÃ¼ÅŸ */
	}
}

.pencereler .kanallar .kanalyazdiv {
	display: none;
	font-size: 20px;
	font-weight: bold;
}

.pencereler .kanallar .kanalyazdiv::after {
	content: ".";
	animation: dots 2s infinite;
}

.pencereler .kanallar .yazivar .kanalname {
	color: #e20c0c;
}

.pencereler .kanallar .kactive {
	color: white;
	background:var(--bodyheader);
}




.pencereler .kanallar .kanal .kanalname {
	width: calc(100% - 40px);
	/* Ä°kinci span geniÅŸliÄŸini dahil etmeden ilk span geniÅŸliÄŸi hesaplamasÄ± */
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 3px 0;
}

.pencereler .kanallar .kanal .kapat {
	display: none;
	cursor: pointer;
	font-weight: bold;
}

.pencereler .kanallar .kanal:hover .kapat {
	display: block;
}

.pencereler .kanallar>div:first-child {
	font-weight: 600;
}

.pencereler .ozeller::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.pencereler .ozeller::-webkit-scrollbar-thumb {
	background: var(--bodylogo);
	color: var(--body);
	border-radius: 10px;
}

.pencereler /* Kanal Öğeleri - Daha Açık ve Canlı Gradyan */
.ozeller div {
  padding: 6px 10px; 
  /* Normal yazı rengini Mavi yapıyoruz */
  color: #2575fc; 
  font-family: "Orbitron", sans-serif;
  font-size: 8px; 
  font-weight: 900; /* Mavi yazının küçük boyutta seçilmesi için kalınlık şart */
  
  /* ARKA PLAN: Mavi yazıyı öne çıkaran açık buz/cam gradyanı */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(200, 215, 235, 0.2));
  
  /* Cam efekti (Blur) */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  border-radius: 5px;
  /* Kenarlığı maviye uyumlu çok hafif bir tona çekiyoruz */
  border: 1px solid rgba(37, 117, 252, 0.2); 
  
  cursor: pointer;
  transition: all 0.25s ease;
  
  letter-spacing: 1px;
  margin-bottom: 4px;
  
  /* Mavi yazıya hafif bir temizlik katmak için gölgeyi beyaz/aydınlık yapıyoruz */
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Üzerine Gelince (Hover) - Mavi Yazı Parlasın */
.ozeller div:hover {
  /* Arka plan biraz daha aydınlanır */
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(37, 117, 252, 0.5);
  transform: translateX(4px);
  /* Mavi bir dış ışık (glow) */
  box-shadow: 0 0 10px rgba(37, 117, 252, 0.2);
}

/* Tıklandığında (Active) - Yazı Beyaz Olsun (İstediğin özellik) */
.ozeller div:active {
  background: #2575fc; /* Arka plan mavi olur */
  color: #000;      /* Yazı beyaz olur */
  text-shadow: none;
  transform: scale(0.96);
}

.pencereler .ozeller .ozel {
	color: #1e72ff;
	font-weight: 400;
	border-radius: 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 7px;
	margin: 0px 5px;
	font-size: 15px;
	cursor: pointer;
}

.pencereler .ozeller .nickyazdiv {
	display: none;
	font-size: 20px;
	font-weight: bold;
}

.pencereler .ozeller .nickyazdiv::after {
	content: "";
	animation: dots 2s infinite;
}

.pencereler .ozeller .oactive {
	color: white;
	background: #1e72ff;
}

.pencereler .ozeller .ozelname i {
	padding: 5px;
}

.pencereler .ozeller .ozel .yanson {
	color: white;
	background: #1e72ff;
	border-radius: 10px;
	animation: yansin 2s infinite;
	/* Animasyon adÄ±, sÃ¼resi ve tekrar sayÄ±sÄ± */
}

@keyframes yansin {
	0% {
		opacity: 0.2;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.2;
	}
}

.pencereler .ozeller .ozel .ozelname {
	width: calc(100% - 40px);
	/* Ä°kinci span geniÅŸliÄŸini dahil etmeden ilk span geniÅŸliÄŸi hesaplamasÄ± */
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 3px 0;
}

.pencereler .ozeller .ozel .kapat {
	display: none;
	cursor: pointer;
}

.pencereler .ozeller .ozel:hover .kapat {
	display: block;
}

.pencereler::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.pencereler::-webkit-scrollbar-thumb {
	background: var(--body);
	color: var(--bodycolor);
	border-radius: 10px;
}

.pencereler .mobilozeller {
	display: block;
	display: flex;
	padding: 0 10px;
	border-bottom: 1px solid silver;
	font-size: 12px;
	text-transform: uppercase;
	font-family: Poppins;

}

.pencereler .mobilozeller .part1 {
	flex: 1;
}

.pencereler .mobilozeller .part1 p {
	margin: 0;
	margin-top: 10px;
	margin-bottom: 5px;
}

.pencereler .mobilozeller .okapat {
	padding: 0px 5px;
	border-radius: 5px;
	margin-right: 10px;
	cursor: pointer;
	background: var(--bodyheader);
	color: var(--body);
}

.kayanyazi {
	position: fixed;
	top: 50px;
	left: 202px;
	width: 634px;
	height: 28px;
	display: flex;
	align-items: center;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	z-index: 0;
	/* Cam gibi gradient artırıldı */
	background: var(--bodyheader);
	padding: 0;
	margin: 0;

	
}

/* Ã‡erÃ§eve animasyonu */
.kayanyazi::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	/* BaÅŸlangÄ±Ã§ta gÃ¶rÃ¼nmez */
	height: 2px;
	/* Ã‡izgi kalÄ±nlÄ±ÄŸÄ± */
	background: var(--bodykenar);
	/* Border rengi */
	/* animation: borderMove 3s linear infinite; */
}

.channel-gif {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background: url(https://qbilisim.net/qwebgirisgif/simsek.gif);
	background-repeat: no-repeat;
	background-size: 100%;
	z-index: 5;
	width: 100%;
	height: 100%;
}

/* Border'Ä±n kayarak ortaya Ã§Ä±kma animasyonu */
@keyframes borderMove {
	0% {
		width: 0;
		right: 0;
	}

	50% {
		width: 100%;
		right: 0;
	}

	100% {
		width: 0;
		right: 100%;
	}
}

.kayanyazi span {
	display: inline-block;
	position: relative;
	white-space: nowrap;
	animation: kayanyaziAnim 10s linear infinite;
	font-family: 'Tahoma', Courier, monospace;
	/* Yazı tipi (Tınısı) */
	font-size: 13px;
	/* Punto (Boyutu) */
	font-weight: bold;
	/* İstersen kalınlık */
	white-space: nowrap;
	color: #ADD8E6;
}

/* Kayan yazÄ±nÄ±n animasyonu */
@keyframes kayanyaziAnim {
	from {
		transform: translateX(634px);
	}

	to {
		transform: translateX(-100%);
	}
}

.topicbolum {
	position: fixed;
	display: flex;
	top: 80px;
	left: 202px;
	width: 636px;
	background: var(--body);
	border-bottom: 1px solid var(--bodykenar);
	height: 38px;
	text-align: left;
	align-items: center;
}

.topicbolum .tcol-1 {
	flex: 0 0 auto;
	padding: 5px;
}

.topicbolum .baslik {
	font-size: 13px;
}

.topicbolum .baslik b {
	background: #565678;
	color: var(--body);
	padding: 5px;
	margin: 0 4px;
	border-radius: 10px;
}

.topicbolum .tcol-2 {
	flex: 0 1 auto;
	overflow: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 13px;
}

.topicbolum .tcol-2::-webkit-scrollbar {
	width: 8px;
	height: 3px;
}

.topicbolum .tcol-2::-webkit-scrollbar-thumb {
	background: #1e72ff;
	color: var(--bodykenar);
	border-radius: 10px;
}

@keyframes shake {
	0% {
		transform: translate(1px, 1px) rotate(0deg);
	}

	10% {
		transform: translate(-1px, -2px) rotate(-1deg);
	}

	20% {
		transform: translate(-3px, 0px) rotate(1deg);
	}

	30% {
		transform: translate(3px, 2px) rotate(0deg);
	}

	40% {
		transform: translate(1px, -1px) rotate(1deg);
	}

	50% {
		transform: translate(-1px, 2px) rotate(-1deg);
	}

	60% {
		transform: translate(-3px, 1px) rotate(0deg);
	}

	70% {
		transform: translate(3px, 1px) rotate(-1deg);
	}

	80% {
		transform: translate(-1px, -1px) rotate(1deg);
	}

	90% {
		transform: translate(1px, 2px) rotate(0deg);
	}

	100% {
		transform: translate(1px, -2px) rotate(-1deg);
	}
}

.msg-titresim {
	animation: shake 0.5s linear infinite;
}

.msg {
	position: absolute;
	padding: 0 2px;
	width: 90px;
	height: 450px;
	left: 202px;
	bottom: 80px;
	top: 91px;
	font-size: 13px;
	overflow-y: hidden;
	overflow-x: hidden;
	background: var(--body);
	background-image: url('');
	background-color: var(--bodyrenk);
	/* var(--user);*/
	padding:2px;

}

.msg .msglogo {
	position: absolute;
	top: 5px;
	width: 220px;
	height: auto;
	right: 10px;
	z-index: 2;
}

.yazanlar::-webkit-scrollbar {
	width: 5px;
}

.yazanlar::-webkit-scrollbar-thumb {
	color: var(--bodycolor);
	background: var(--bodyrenk);
	border-radius: 10px;
}

.msg .yazanlar {
	position: fixed;
	width: auto;
	height: auto;
	max-height: 400px;
	bottom: 50px;
	right: 400px;
	padding: 0 2px;
	border-radius: 5px;
	max-height: 400px;
	overflow: auto;
}

.msg .yazanlar .yazannick {
	width: auto;
	color: var(--bodycolor);
	background: #f3f3ff;
	height: auto;
	padding: 0 10px;
	border-radius: 5px;
	margin: 0;
	margin-bottom: 5px;
}

.msg .yazanlar .yazannick span {
	display: inline-block;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.msg .kullanicimenu {
	display: none;
	position: fixed;
	top: 120px;
	right: 400px;
	z-index: 2;
}

.msg .kullanicimenu .kullaniciackapat {
	position: absolute;
	top: -30px;
	right: -200;
	background: var(--bodyrenk);
	color: var(--bodycolor);
	padding: 5px;
}

.msg .kullanicimenu ul {
	position: absolute;
	top: 0;
	right: -200px;
	background: var(--bodyheader);
	color:var(--bodyrenk);
	text-align: left;
	padding: 5px 0px 5px 40px;
	width: 120px;
}



.msg .kullanicimenu ul li{
	background: var(--bodyheader);
	color:var(--bodyrenk);
}


.msg .kullanicimenu .titresim {
	position: absolute;
	top: 65px;
	left: -35px;
	background: var(--bodyheader);
	color:var(--bodyrenk);
	border: 1px solid silver;
	padding: 0;
	margin: 0;
	font-size: 23px;
	padding: 4px;

}

.msg .kullanicimenu .seskaydi {
	position: absolute;
	top: 113px;
	left: -35px;
	background: var(--bodyheader);
	color:var(--bodyrenk);
	border: 1px solid silver;
	padding: 0;
	margin: 0;
	font-size: 30px;
	padding: 4px;
}

.msg .kullanicimenu .resimgonder {
	position: absolute;
	top: 171px;
	left: -35px;
	background: var(--bodyheader);
	color:var(--bodyrenk);
	border: 1px solid silver;
	padding: 0;
	margin: 0;
	font-size: 23px;
	padding: 4px;
}

.msg .kullanicimenu .ozelnick {
	background: var(--bodyheader);
	
	padding: 5px;
}

.msg .kullanicimenu ul li {
	list-style: none;
	margin: 5px;
	margin-left: -30px;
	padding: 2px;
	border-bottom: 1px solid white;
	cursor: pointer;
}

.msg .kullanicimenu ul li:hover {
	background: silver;
}

.msg .kullanicimenu ul li img {
	width: 100%;
	height: auto;
	max-height: 80px;
	border-radius: 29px;
	color:var(--bodyrenk);
	padding: 10px 0px;
}

.msg .nick.v {
	color: var(--voice);
}

.msg .nick.h {
	color: var(--halfop);
}

.msg .nick.o {
	color: var(--op);
}

.msg .nick.a {
	color: var(--sop);
}

.msg .nick.q {
	color: var(--founder);
}

.msg .topicmsg,
.msg .topicupdate,
.msg .mode,
.msg .newnick,
.msg .seslenme,
.msg .kick {
	font-weight: unset;
	color: #948f8f;
}

.msg .kanal .format_span {
	border-radius: 5px;
}

.msg .kanal .qgif {
	width: auto;
	height: auto;
}

.msg .kanal {
	display: none;
	position: relative;
	height: 100%;
	padding: 0;
	overflow-y: auto;
	padding-bottom: 3px;
}

.mactive::-webkit-scrollbar {
	width: 5px;
}

.mactive::-webkit-scrollbar-thumb {
	color: var(--bodycolor);
	background: var(--bodyrenk);
	border-radius: 10px;
}

.msg .bubbles {
	position: absolute;
	left: 160px;
	transform: translate(10px, -50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.msg .bubbles .bubble {
	width: 30px;
	height: 30px;
	background-color: #eee;
	border: 2px solid #ccc;
	border-radius: 48%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.msg .bubbles .bubble:hover {
	background-color: #ddd;
}

.msg .kanal .mesaj {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0px 0;
}

.msg .kanal .profile {
	width: 40px;
	/* Profil iÃ§in sabit geniÅŸlik */
	height: 40px;
	/* Sabit yÃ¼kseklik */
	border-radius: 50%;
	/* Yuvarlak profil simgesi */
	/* background-color: #ddd; Profil arka plan rengi */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	/* Emoji boyutu */
	margin-right: 10px;
	/* Ä°Ã§erikle aradaki boÅŸluk */
}

.msg .kanal .mesaj .profile img {
	width: 30px;
	/* Profil iÃ§in sabit geniÅŸlik */
	height: 30px;
	/* Sabit yÃ¼kseklik */
	border-radius: 50%;
}

.msg .kanal .mesaj .content {
	flex: 0 1 auto;
	background: var(--body);
	padding: 5px 20px 5px 5px;
	border-radius: 5px 10px 20px 5px;
}

.msg .kanal .mesaj .msgheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.msg .kanal .mesaj .msgheader .alinti {
	background: #e7e4e4;
	padding: 2px 5px;
	border-radius: 10px 0px 10px;
	border: 1px solid #bbb8b8;
	margin-top: 3px;
	padding-top: 10px;
}

.msg .kanal .mesaj .msgheader .alinti .alintititle {
	position: absolute;
	margin-top: -12px;
	color: black;
	font-size: 9px;
}

.msg .kanal .mesaj .msgheader .alinti .alintinick {
	font-weight: 500;
	margin-right: 5px;
}

.msg .kanal .mesaj .msgheader .alinti .alintitext {}

.mesaj .mesaj .text {
	display: block;
	margin-top: 5px;
	background: #f2f4f9;
	color: #000;
	padding: 5px;
	border-radius: 5px 10px 20px 5px;
	text-align: justify;
	/* Metin taÅŸmasÄ±nÄ± engelle */
	word-wrap: break-word;
	/* SatÄ±r uzunluÄŸunu aÅŸarsa kÄ±r */
	overflow-wrap: anywhere;
	white-space: normal;
	/* Metni kutu iÃ§ine sÄ±ÄŸdÄ±rmak iÃ§in */
}

.msg .kanal .text .ozelseskayit {
	width: 150px;
	height: 36px;
}

.msg .kanal .text .ozelresimurl {
	width: auto;
	height: 100px;
	max-width: 100%;
	cursor: pointer;
}

.msg .kanal .text .emojione {
	width: 20px;
	position: relative;
	top: 2px;
	margin: 0 2px;
}

.msg .kanal .mesaj .text span {
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}

.msg .kanal .mesaj .time {
	flex: 0 0 40px;
	margin: 0px 5px;
	color: #000000;
}

.msg .mesajsekil {
	display: inline-block !important;
}

.msg .kanal .mesajsekil .time {
	position: relative;
}

.msg .mesajsekil .profile {
	width: 20px;
	height: 20px;
	margin: 0;
	margin-right: 5px;
	display: unset;
}

.msg .kanal .mesajsekil .profile img {
	width: 20px !important;
	height: 20px !important;
	position: relative;
	top: 5px;
}

.msg .mesajsekil .content {
	display: flex;
	background: transparent;
}

.msg .mesajsekil .text {
	margin-left: 5px;
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}

.msg .mesajsekil .time {
	position: absolute;
	right: 0;
}

.msg .kanal .content .time {
	flex: 0 0 60px;
}

.msg .kanal .nick {
	font-weight: bold;
	font-size: 0.9em;
	border-radius: 3px;
}

.msg .kanal .icon {
	flex: 0 0 17px;
	margin-right: 5px;
}

.msg .kanal .notice {
	color: #974e00;
	margin: 2px 2px;
}

.msg .kanal .notice .text {
	display: unset;
	margin-top: 5px;
	text-align: justify;
	/* Metin taÅŸmasÄ±nÄ± engelle */
	word-wrap: break-word;
	/* SatÄ±r uzunluÄŸunu aÅŸarsa kÄ±r */
	overflow-wrap: anywhere;
	white-space: normal;
	/* Metni kutu iÃ§ine sÄ±ÄŸdÄ±rmak iÃ§in */
}

.msg .kanal .action {
	color: #b100b9;
	margin: 2px 2px;
}

.msg .mactive {
	display: block;
}

.msg .bildirim {
	margin: 2px 0px !important;
	text-align: justify;
	/* Metin taÅŸmasÄ±nÄ± engelle */
	word-wrap: break-word;
	/* SatÄ±r uzunluÄŸunu aÅŸarsa kÄ±r */
	overflow-wrap: anywhere;
	white-space: normal;
	/* Metni kutu iÃ§ine sÄ±ÄŸdÄ±rmak iÃ§in */
}

.msg .newnick .bildirim {
	color: #ad6100;
	padding: 0px 5px;
}

.msg .join .bildirim {
	color: #01ad00;
	padding: 0px 5px;
}

.msg .part .bildirim {
	color: #0266a3;
	padding: 0px 5px;
}

.msg .quit .bildirim .xquit {
	color: #ff0202;
	padding: 0px 5px;
}

.editor {
	position: fixed;
	left: 202px;
	bottom: 0;
	width: 100%;
	height: 50px;
	padding: 0 09px;
	background: var(--bodyheader);
	border-top: 1px solid var(--bodykenar);
}

.editor .mobileditor {
	display: none;
}

.editor .co-ust {
	position: absolute;
	display: none;
	height: 35px;
	margin: 5px;
	padding: 8px;
	align-items: center;
	left: 0;
	bottom: 50px;
	z-index: 30;
	background: #565678;
	color: var(--body);
	border-radius: 1px solid var(--bodykenar);
}

.editor .yaktive {
	background: var(--body);
	color: var(--bodycolor);
}

.editor .kalinyazi,
.editor .yanyazi,
.editor .altyazi,
.editor .renkler,
.editor .temizle,
.editor .mirc {
	width: auto;
	margin-right: 0px;
	padding: 5px 10px;
	text-align: center;
	border-right: 1px solid silver;
	font-size: 16px;
	cursor: pointer;
}

.editor .kalinyazi:hover,
.editor .yanyazi:hover,
.editor .altyazi:hover,
.editor .renkler:hover,
.editor .temizle:hover,
.editor .mirc:hover,
.editor .yazibuyut:hover,
.editor .yazikucult:hover,
.editor .radyo:hover,
.editor .tamekran:hover {
	opacity: 0.6;
	/* Hover durumunda opacity 0.8 yapÄ±lÄ±yor */
}

.editor .kalinyazi {
	font-weight: bold;
}

.editor .yanyazi {
	font-style: italic;
}

.editor .altyazi {
	text-decoration: underline;
}

.editor .renklist {
	display: flex;
	display: none;
	position: absolute;
	list-style: none;
	padding: 0px;
	top: -40px;
	left: 0;
}

.editor .renklist li {
	padding: 13px;
	border: 1px solid #ccc;
	margin: 0px;
}

.editor .renklist li:hover {
	opacity: 0.6;
	cursor: pointer;
}

.editor .renklist .renk1 {
	background: black;
}

.editor .renklist .renk2 {
	background: #002d50;
}

.editor .renklist .renk3 {
	background: #008000;
}

.editor .renklist .renk4 {
	background: #FF0000;
}

.editor .renklist .renk5 {
	background: #800040;
}

.editor .renklist .renk6 {
	background: #800080;
}

.editor .renklist .renk7 {
	background: #FF8040;
}

.editor .renklist .renk8 {
	background: #FFFF00;
}

.editor .renklist .renk9 {
	background: #80FF00;
}

.editor .renklist .renk10 {
	background: #008080;
}

.editor .renklist .renk11 {
	background: #00FFFF;
}

.editor .renklist .renk12 {
	background: #0000FF;
}

.editor .renklist .renk13 {
	background: #FF55FF;
}

.editor .renklist .renk14 {
	background: #808080;
}

.editor .renklist .renk15 {
	background: #ffffff;
}

.renklist li.renkaktif::before {
	content: "\f00c";
	font-family: 'FontAwesome';
	font-size: 20px;
	color: white;
	position: absolute;
	transform: translate(-50%, -50%);
}

.editor .mirc a {
	text-decoration: none;
	color: var(--bodycolor);
	font-weight: 500;
}

.editor .yazibuyut,
.editor .yazikucult,
.editor .radyo,
.editor .tamekran {
	padding: 5px 9px;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
	border-right: 1px solid silver;
	margin: -2px;
}

.editor #emojigif {
	width: 30px;
	height: 30px;
}

.sagbar {
	margin-left: auto;
	/* SaÄŸa yasla */
}

.editor #giflist::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.editor #giflist::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}

/*.editor #giflist {	display: none;	position: absolute;	top: -200px;	right: 0;	width: 170px;	height: 190px;	background: #ffffff;	border-radius: 5px;	border: 1px solid silver;	overflow: hidden;	overflow-y: auto;}.editor #giflist img {	width: 40px;	height: 40px;	cursor: pointer;}*/
/* ana pencere id seçicisi (#) */
#giflist {
	right: 0;
	top: -240px;
	width: 300px;
	height: 200px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
	gap: 12px;
	padding: 15px;
	background-color: #e0f2f1;
	/* açık tatlı mint yeşili */
	border-radius: 15px;
	border: 2px solid #b2dfdb;
	/* profesyonel gölge efekti */
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
	max-width: 300px;
	max-height: 250px;
	overflow-y: auto;
	position: absolute;
	/* sohbet kutusunun üzerinde durması için genellikle gereklidir */
	z-index: 999;
}

/* id içindeki img etiketleri */
#giflist img {
	width: 30px;
	height: 30px;
	padding: 4px;
	background: #ffffff;
	border: 2px solid #b2dfdb;
	/* radiuslu çerçeve */
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	object-fit: contain;
}

/* img üzerine gelince (hover) */
#giflist img:hover {
	border-color: #4db6ac;
	/* koyu mint çerçeve */
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* kaydırma çubuğu (scrollbar) özelleştirme */
#giflist::-webkit-scrollbar {
	width: 6px;
}

#giflist::-webkit-scrollbar-thumb {
	background: #b2dfdb;
	border-radius: 10px;
}

.editor .co-alt {
	height: 45px;
	position: relative;
}

.editor .co-alt .co-auto:nth-child(1) {
	flex: 0 0 30px;
	margin: 0 10px;
}

.editor .co-alt .co-auto:nth-child(2) {
	display: none;
	width: 5%;
}

.editor .co-alt .co-auto:nth-child(3) {
	flex: 0 1 90%;
}

.editor .co-alt .co-auto:nth-child(4) {
	text-align: center;
	flex: 0 0 30px;
}

.editor .co-alt .co-auto:nth-child(5) {
	text-align: center;
	flex: 0 2 100px;
}

.editor .textbtn {
	text-align: center;
	background: #565678;
	color: #fff;
	padding: 5px;
	border-radius: 10px;
}

.editor .tabbutton {
	text-align: center;
	background: var(--bodyheader);
	color: #fff;
	padding: 5px;
	border-radius: 10px;
}

.editor #inputmsg {
	width: 100%;
	border: none;
	font-size: 20px;
	color: black;
}

.editor #inputgonder {
	padding: 10px 5px;
	border: none;
	background: #565678;
	color: var(--body);
	margin-left: 5px;
	font-size: 13px;
	border-radius: 10px;
	cursor: pointer;
}

.row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.emojionearea.emojionearea-inline {
	border: none !important;
}

.emojionearea.emojionearea-inline>.emojionearea-editor {}

.emojionearea.emojionearea-inline>.emojionearea-button {
	top: 10px !important;
}

.emojionearea .emojionearea-button {
	opacity: 1 !important;
}

.emojionearea .emojionearea-button>div.emojionearea-button-open {
	background-position: 0 -30px;
	background-size: 24px 128px;
	filter: alpha(enabled=false);
	opacity: 1;
	background-image: url(../images/emoji.png) !important;
	border-radius: 10px;
	margin-top: -3px;
}

@keyframes rotate360 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.header .fa-spinner {
	animation: rotate360 2s linear infinite;
}

.ayarlarmenu {
	padding: 20px;
}

.ayarlarmenu span {
	margin-left: 10px;
	font-size: 13px;
}

.ayarlarmenu .checkbox {
	display: none;
}

.ayarlarmenu .checkbox+label {
	display: inline-block;
	position: relative;
	width: 35px;
	height: 5px;
	background: linear-gradient(to right, #fd1a15 0, #fc8b34 45%, #7fd03e 55%, #007177 100%) 0 0;
	background-size: 650px 100%;
	border-radius: 70px;
	padding: 7px;
	cursor: pointer;
	transition: all 500ms ease;
	box-shadow: 0 0px 10px rgb(0 0 0 / 20%) inset;
}

.ayarlarmenu .checkbox+label:before {
	content: "Off";
	width: 20px;
	height: 15px;
	position: absolute;
	left: 3px;
	top: 2px;
	border-radius: 100%;
	background: #fff;
	text-align: center;
	line-height: 16px;
	font-family: "Cabin", sans-serif;
	font-size: 7px;
	font-weight: bold;
	color: #fd1a15;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: left 500ms ease, color 500ms ease, transform 150ms ease;
}

.ayarlarmenu .checkbox+label:active:before {
	transform: scale(0.95);
}

.ayarlarmenu .checkbox:checked+label {
	background-position-x: -350px;
}

.ayarlarmenu .checkbox:checked+label:before {
	content: "On";
	color: #007177;
	left: 22px;
}

.gecemodu {
	padding: 10px;
	/*background: var(--bodyrenk);*/
	border-radius: 10px;
}

.gecemodu #mar {
	display: none;
	/* Checkbox gizlenir */
}

.gecemodu .checkbox-label {
	z-index: 0;
	position: relative;
}

.gecemodu .options {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	position: relative;
	/*- background-color: var(--bodycolor); */
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}

.gecemodu .options .decline,
.gecemodu .options .accept {
	position: absolute;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.gecemodu .options .decline {
	/* color: #f39c12;  GÃ¼neÅŸ rengi */
	opacity: 1;
	/* VarsayÄ±lan olarak gÃ¼neÅŸ gÃ¶rÃ¼nÃ¼r */
	transform: scale(1);
}

.gecemodu .options .accept {
	/* color: #3498db; Ay rengi */
	opacity: 0;
	/* VarsayÄ±lan olarak gizli */
	transform: scale(0.8);
}

/* Checkbox iÅŸaretliyken (Gece modu aktif) */
.gecemodu #mar:checked+.options .decline {
	opacity: 0;
	/* GÃ¼neÅŸ kaybolur */
	transform: scale(0.8);
}

.gecemodu #mar:checked+.options .accept {
	opacity: 1;
	/* Ay gÃ¶rÃ¼nÃ¼r */
	transform: scale(1);
}

/* Arka plan rengi deÄŸiÅŸimi */
.gecemodu #mar:checked+.options {
	/* background-color: #2c3e50;  Gece modu arka plan rengi */
}

.jconfirm-form input {
	padding: 10px;
	font-size: 15px;
	border-radius: 7px;
	border: 1px solid var(--bodyheader);
}

.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
	background: var(--body);
	color: var(--bodycolor);
	border-top: 5px solid var(--bodyheader);
}

.whois p {
	margin: 0;
}

.context-menu {}

.context-menu .clickrumuz {
	margin: 0;
}

.context-menu ul {
	padding: 0;
	margin: 0;
}

.engellistdiv {
	overflow-y: auto;
	width: 300px;
	max-height: 300px;
}

.engellistdiv .list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px;
	border-bottom: 1px solid #ccc;
}

.engellistdiv .list-item span {
	flex: 1;
}

.engellistdiv .list-item i {
	cursor: pointer;
	color: red;
}

.engellistdiv .hepsini-kaldir {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.engellistdiv .hepsini-kaldir button {
	background-color: #d9534f;
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
}

.engellistdiv .hepsini-kaldir button:hover {
	background-color: #c9302c;
}

.engellistdiv::-webkit-scrollbar {
	width: var(--scrollwidth);
}

.engellistdiv::-webkit-scrollbar-thumb {
	background: var(--bodyrenk);
	color: var(--bodycolor);
	border-radius: 10px;
}

.gece {
	background: var(--bodygece);
}

.gece .header {
	background: var(--bodygece);
	color: var(--bodygececolor);
}

.gece .solbar {
	background: var(--bodygece);
	color: var(--bodygececolor);
}

.gece .pencereler {
	background: var(--bodygece);
	color: var(--bodygececolor);
	border-left: 1px solid #616161;
}

.gece .msg {
	background: var(--bodygece);
}

.gece .msg .kanal .notice {
	color: #f39026;
	margin: 2px 2px;
}

.gece .msg .topicmsg,
.gece .msg .topicupdate,
.gece .msg .mode,
.gece .msg .newnick,
.gece .msg .seslenme,
.gece .msg .kick {
	background: var(--bodygecebildirim);
	color: var(--bodygececolor);
}

.gece .editor {
	background: var(--bodygece);
	color: var(--bodygececolor);
	border-top: 1px solid #616161;
}

.gece .editor .kalinyazi,
.gece .editor .yanyazi,
.gece .editor .altyazi,
.gece .editor .renkler,
.gece .editor .temizle,
.gece .editor .mirc a,
.gece .editor .mirc {
	color: var(--bodygececolor);
}

.gece .emojionearea.emojionearea-inline {
	background: var(--bodygecebildirim);
}

.gece .emojionearea-editor {
	color: var(--bodygececolor);
}

.gece .nickler ul {
	background: #282828;
	border-left: 1px solid #616161;
}

.gece .nickler ul .nick {
	color: var(--bodygececolor);
}

.gece .nickler ul .nickselected {
	background: var(--bodygecebildirim);
	color: var(--bodygece);
}

/* renk2 */
.renk2 {
	background: var(--renk2color);
}


.renk2 body {
	background: var(--renk2body);
}
.renk2 .nickler {
	background: var(--renk2color);
}

.renk2 .header {
	background: var(--renk2body);
}


.renk2 .kayanyazi {
	background: var(--renk2body);
}



.renk2 .solbar {
	background: var(--renk2body);
	color: var(--renk2color);
}

.renk2 .topicbolum {
	background: var(--renk2color);
}

.renk2 .nickler ul {
	background: var(--renk2color);
}

.renk2 .nickler .nicktara {
	background: var(--renk2color);
}

.renk2 .pencereler {
	background: var(--renk2color);

}

.renk2 .pencereler .kanallar .kactive {
	background: var(--renk2body);
}

.renk2 .pencereler .ozeller .oactive {
	background: var(--renk2body);
}

.renk2 .pencereler .mobilozeller .okapat {
	background: var(--renk2body);
}

.renk2 .nickler .kenarakaydir {
	background: var(--renk2body);
	color: var(--renk2color);
}

.renk2 .msg {
	background: var(--renk2color);
}

.renk2 .msg .kullanicimenu .ozelnick {
	background: var(--renk2body);
	color: var(--renk2color);
}

.renk2 .msg .kullanicimenu ul {
	background: var(--renk2body);
	color: var(--renk2color);
}


.renk2 .msg .kullanicimenu ul li{
	background: var(--renk2body);
	color: var(--renk2color);
}

.renk2 .msg .kanal .content {
	margin-top: 2px;
}

.renk2 .editor {
	background: var(--renk2color);
}

.renk2 .editor .co-ust {
	background: var(--renk2body);
	color: var(--renk2color);
}

.renk2 .editor .textbtn {
	background: var(--renk2body);
}

.renk2 .editor .tabbutton {
	background: var(--renk2body);
}

.renk2 .editor #inputgonder {
	background: var(--renk2body);
}

.renk2 .msg .topicmsg,
.renk2 .msg .topicupdate,
.renk2 .msg .mode,
.renk2 .msg .newnick,
.renk2 .msg .seslenme,
.renk2 .msg .kick {
	background: var(--renk2color);
}

.renk2 .jconfirm.jconfirm-white .jconfirm-box,
.renk2 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk2body);
}

.renk2 .context-menu {
	background: var(--renk2body);
	color: var(--renk2color);
}

/* renk3 */
/* renk3 */
.renk3 {
	background: var(--renk3color);
}


.renk3 body {
	background: var(--renk3body);
}
.renk3 .nickler {
	background: var(--renk3color);
}

.renk3 .header {
	background: var(--renk3body);
}

.renk3 .solbar {
	background: var(--renk3body);
	color: var(--renk3color);
}


.renk3 .kayanyazi {
	background: var(--renk3body);
}


.renk3 .topicbolum {
	background: var(--renk3color);
}

.renk3 .nickler ul {
	background: var(--renk3color);
}

.renk3 .nickler .nicktara {
	background: var(--renk3color);
}

.renk3 .pencereler {
	background: var(--renk3color);
}

.renk3 .pencereler .kanallar .kactive {
	background: var(--renk3body);
}

.renk3 .pencereler .ozeller .oactive {
	background: var(--renk3body);
}

.renk3 .pencereler .mobilozeller .okapat {
	background: var(--renk3body);
}

.renk3 .nickler .kenarakaydir {
	background: var(--renk3body);
	color: var(--renk3color);
}

.renk3 .msg {
	background: var(--renk3color);
}

.renk3 .msg .kullanicimenu .ozelnick {
	background: var(--renk3body);
	color: var(--renk3color);
}

.renk3 .msg .kullanicimenu ul {
	background: var(--renk3body);
	color: var(--renk3color);
}


.renk3 .msg .kullanicimenu ul li{
	background: var(--renk3body);
	color: var(--renk3color);
}


.renk3 .msg .kanal .content {
	margin-top: 2px;
}

.renk3 .editor {
	background: var(--renk3color);
}

.renk3 .editor .co-ust {
	background: var(--renk3body);
	color: var(--renk3color);
}

.renk3 .editor .textbtn {
	background: var(--renk3body);
}

.renk3 .editor .tabbutton {
	background: var(--renk3body);
}

.renk3 .editor #inputgonder {
	background: var(--renk3body);
}

.renk3 .msg .topicmsg,
.renk3 .msg .topicupdate,
.renk3 .msg .mode,
.renk3 .msg .newnick,
.renk3 .msg .seslenme,
.renk3 .msg .kick {
	background: var(--renk3color);
}

.renk3 .jconfirm.jconfirm-white .jconfirm-box,
.renk3 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk3body);
}

.renk3 .context-menu {
	background: var(--renk3body);
	color: var(--renk3color);
}

/* renk4 */
.renk4 {
	background: var(--renk4color);
}


.renk4 body {
	background: var(--renk4body);
}
.renk4 .nickler {
	background: var(--renk4color);
}


.renk4 .header {
	background: var(--renk4body);
}

.renk4 .solbar {
	background: var(--renk4body);
	color: var(--renk4color);
}


.renk4 .kayanyazi {
	background: var(--renk4body);
}

.renk4 .topicbolum {
	background: var(--renk4color);
}

.renk4 .nickler ul {
	background: var(--renk4color);
}

.renk4 .nickler .nicktara {
	background: var(--renk4color);
}

.renk4 .pencereler {
	background: var(--renk4color);
}

.renk4 .pencereler .kanallar .kactive {
	background: var(--renk4body);
}

.renk4 .pencereler .ozeller .oactive {
	background: var(--renk4body);
}

.renk4 .pencereler .mobilozeller .okapat {
	background: var(--renk4body);
}

.renk4 .nickler .kenarakaydir {
	background: var(--renk4body);
	color: var(--renk4color);
}

.renk4 .msg {
	background: var(--renk4color);
}

.renk4 .msg .kullanicimenu .ozelnick {
	background: var(--renk4body);
	color: var(--renk4color);
}

.renk4 .msg .kullanicimenu ul {
	background: var(--renk4body);
	color: var(--renk4color);
}


.renk4 .msg .kullanicimenu ul li{
	background: var(--renk4body);
	color: var(--renk4color);
}


.renk4 .msg .kanal .content {
	margin-top: 2px;
}

.renk4 .editor {
	background: var(--renk4color);
}

.renk4 .editor .co-ust {
	background: var(--renk4body);
	color: var(--renk4color);
}

.renk4 .editor .textbtn {
	background: var(--renk4body);
}

.renk4 .editor .tabbutton {
	background: var(--renk4body);
}

.renk4 .editor #inputgonder {
	background: var(--renk4body);
}

.renk4 .msg .topicmsg,
.renk4 .msg .topicupdate,
.renk4 .msg .mode,
.renk4 .msg .newnick,
.renk4 .msg .seslenme,
.renk4 .msg .kick {
	background: var(--renk4color);
}

.renk4 .jconfirm.jconfirm-white .jconfirm-box,
.renk4 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk4body);
}

.renk4 .context-menu {
	background: var(--renk4body);
	color: var(--renk4color);
}

/* renk5 */
.renk5 {
	background: var(--renk5color);
}



.renk5 body {
	background: var(--renk5body);
}
.renk5 .nickler {
	background: var(--renk5color);
}


.renk5 .header {
	background: var(--renk5body);
}

.renk5 .solbar {
	background: var(--renk5body);
	color: var(--renk5color);
}


.renk5 .kayanyazi {
	background: var(--renk5body);
}

.renk5 .topicbolum {
	background: var(--renk5color);
}

.renk5 .nickler ul {
	background: var(--renk5color);
}

.renk5 .nickler .nicktara {
	background: var(--renk5color);
}

.renk5 .pencereler {
	background: var(--renk5color);
}

.renk5 .pencereler .kanallar .kactive {
	background: var(--renk5body);
}

.renk5 .pencereler .ozeller .oactive {
	background: var(--renk5body);
}

.renk5 .pencereler .mobilozeller .okapat {
	background: var(--renk5body);
}

.renk5 .nickler .kenarakaydir {
	background: var(--renk5body);
	color: var(--renk5color);
}

.renk5 .msg {
	background: var(--renk5color);
}

.renk5 .msg .kullanicimenu .ozelnick {
	background: var(--renk5body);
	color: var(--renk5color);
}

.renk5 .msg .kullanicimenu ul {
	background: var(--renk5body);
	color: var(--renk5color);
}


.renk5 .msg .kullanicimenu ul li{
	background: var(--renk5body);
	color: var(--renk5color);
}


.renk5 .msg .kanal .content {
	margin-top: 2px;
}

.renk5 .editor {
	background: var(--renk5color);
}

.renk5 .editor .co-ust {
	background: var(--renk5body);
	color: var(--renk5color);
}

.renk5 .editor .textbtn {
	background: var(--renk5body);
}

.renk5 .editor .tabbutton {
	background: var(--renk5body);
}

.renk5 .editor #inputgonder {
	background: var(--renk5body);
}

.renk5 .msg .topicmsg,
.renk5 .msg .topicupdate,
.renk5 .msg .mode,
.renk5 .msg .newnick,
.renk5 .msg .seslenme,
.renk5 .msg .kick {
	background: var(--renk5color);
}

.renk5 .jconfirm.jconfirm-white .jconfirm-box,
.renk5 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk5body);
}

.renk5 .context-menu {
	background: var(--renk5body);
	color: var(--renk5color);
}



/* renk6 */

.renk6 {
	/*background: var(--renk6color);*/
	background: #CCCACA;
}


.renk6 body {
	/*background: var(--renk6color);*/
	background: #CCCACA;
}
.renk6 .nickler {
	background: var(--renk6color);
}

.renk6 .header {
	background: var(--renk6body);
}

.renk6 .solbar {
	background: var(--renk6body);
	color: var(--renk6color);
}


.renk6 .kayanyazi {
	background: var(--renk6body);
}

.renk6 .topicbolum {
	background: var(--renk6color);
}

.renk6 .nickler ul {
	background: var(--renk6color);
}

.renk6 .nickler .nicktara {
	background: var(--renk6color);
}

.renk6 .pencereler {
	background: var(--renk6color);
}

.renk6 .pencereler .kanallar .kactive {
	background: var(--renk6body);
}

.renk6 .pencereler .ozeller .oactive {
	background: var(--renk6body);
}

.renk6 .pencereler .ozeller .seskaydi {
	background: var(--renk6body);
}

.renk6 .pencereler .mobilozeller .okapat {
	background: var(--renk6body);
}

.renk6 .nickler .kenarakaydir {
	background: var(--renk6body);
	color: var(--renk6color);
}

.renk6 .msg {
	background: var(--renk6color);
}

.renk6 .msg .kullanicimenu .ozelnick {
	background: var(--renk6body);
	color: var(--renk6color);
}

.renk6 .msg .kullanicimenu ul {
	background: var(--renk6body);
	color: var(--renk6color);
}


.renk6 .msg .kullanicimenu ul li{
	background: var(--renk6body);
	color: var(--renk6color);
}


.renk6 .msg .kanal .content {
	margin-top: 2px;
}

.renk6 .editor {
	background: var(--renk6color);
}

.renk5 .editor .co-ust {
	background: var(--renk6body);
	color: var(--renk6color);
}

.renk6 .editor .textbtn {
	background: var(--renk6body);
}

.renk6 .editor .tabbutton {
	background: var(--renk6body);
}

.renk6 .editor #inputgonder {
	background: var(--renk6body);
}

.renk6 .msg .topicmsg,
.renk6 .msg .topicupdate,
.renk6 .msg .mode,
.renk6 .msg .newnick,
.renk6 .msg .seslenme,
.renk6 .msg .kick {
	background: var(--renk6color);
}

.renk6 .jconfirm.jconfirm-white .jconfirm-box,
.renk6 .jconfirm.jconfirm-light .jconfirm-box {
	border-top: 5px solid var(--renk6body);
}

.renk6 .context-menu {
	background: var(--renk6body);
	color: var(--renk6color);
}

/*Renk6 temasini haeaderin yazi renkleri*/

.renk6 .header div,
.renk6 .header span,
.renk6 .header i, 
.renk6 .header p {
    color: var(--renk6yazirenk) !important;

}


.renk6 .msg,
.renk6 .nickler,
.renk6 .kayanyazi,
.renk6 .pencereler,
.renk6 .nickler ul.kanal,
.renk6 .nickler .naktive,
.renk6 .kanallar,
.renk6 .ozeller{
/*background: linear-gradient(to bottom, #F5F5F5 0%, #CCCACA 100%);*/
/*background-image: url('images/bgpm.png');*/

}
.renk6 .msg{
	background-image: url('images/bgpm.png');
}

.renk6 .ozeller .ozel:not(.active) .ozelname .yanson,
.renk6 .ozeller span:not(.active),
.renk6 .pencereler .kanallar div:not(.active) {
    color: var(--renk6body);
    /* Gölgeyi de sadece seçili değilken istersen buraya, her zaman istersen dışarı yazabilirsin */
    text-shadow: 
        0px 0px 5px rgba(255, 255, 255, 1), 
        0px 0px 10px rgba(255, 255, 255, 1), 
        2px 2px 3px rgba(255, 255, 255, 0.9) !important;
}

body.renk6 #kayanyazi span div {
    color: var(--renk6yazirenk) !important;
}

/*Renk6 temasini haeaderin yazi renkleri*/


/* Renkler Bitti */
.mobilmenu {
	display: none;
}

.mobilkapat {
	display: none;
}

.mobilkanalinc {
	display: none;
}

.seslivar {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background: green;
	color: white;
	padding: 5px;
	font-size: 10px;
	width: 75px;
	z-index: 3;
	cursor: pointer;
}

.kamerabolum {
	display: none;
	position: absolute;
	top: 60px;
	right: 210px;
	z-index: 2;
	width: 200px;
	height: auto;
	background: black;
	border: 1px solid #bfbfbf;
	border-radius: 20px;
	overflow: hidden;
	/* Ä°Ã§eriÄŸin taÅŸmasÄ±nÄ± engeller */
	cursor: grab;
	/* SÃ¼rÃ¼klenebilir olduÄŸunu belirtir */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	/* Hafif gÃ¶lge ekler */
}

.kamerabilgi {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 0px;
	height: 5%;
}

.kamerabilgi p {
	margin: 0;
	flex: 0 0 31%;
	text-align: center;
	font-size: 14px;
	color: #fde4e4;
}

.kamerabilgi .kameragizle {
	cursor: pointer;
}

.kamerabilgi .kameratam {
	cursor: pointer;
}

.aktifkamera {
	margin-top: 5px;
	width: 100%;
	height: 40%;
}

.nickkamera {
	width: 100%;
	height: 40%;
}

video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.alttuslar {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 13%;
}

.alttuslar .sesbtn {
	background: #d70000;
	border-radius: 20px;
	color: white;
	padding: 5px;
	font-size: 20px;
	width: 20%;
	cursor: pointer;
}

.alttuslar .mikrofonbtn {
	border-radius: 20px;
	color: black;
	padding: 5px;
	font-size: 20px;
	width: 30%;
	cursor: pointer;
}

.alttuslar .kamerabtn {
	border-radius: 20px;
	background: #3d3f3d;
	color: white;
	padding: 5px;
	font-size: 20px;
	width: 30%;
	cursor: pointer;
}

.alttuslar .kameraaktif {
	background: green;
}

.seskayitdiv {
	/*display: flex; */
	flex-wrap: nowrap;
	align-content: flex-end;
	flex-direction: row;
	align-items: center;
}

.seskayitdiv #kayitbtn {
	padding: 8px;
	border: 1px solid silver;
	border-radius: 10px;
}

.seskayitdiv #seskayitdinle {
	display: none;
	margin: 2px;
	flex: 0 0 40%;
	height: 30px;
}

.seskayitdiv #kayitdurum {
	display: none;
	animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.seskayitdiv #durdurbtn {
	display: none;
	background: red;
	color: white;
	padding: 5px 10px;
	border-radius: 10px;
	border: none;
}

.seskayitdiv #kayitgonderbtn {
	display: none;
	flex: 0 0 auto;
	font-size: 12px;
	padding: 5px 10px;
	background: green;
	color: white;
}

.seskayitdiv #yenikayitbtn {
	display: none;
	background: white;
	border: 1px solid silver;
	padding: 5px 10px;
	font-size: 12px;
}

@media screen and (min-width:1400px) {
	.msg {
		font-size: 15px;
	}

	.topicbolum {
		top: 80px;
	}

	.topicbolum .tcol-2 {
		font-size: 15px;
	}

	.nickler .nicktara {
		top: 52px;
	}

	.nickler ul {
		top: 42px;
	}

	.msg .kanal .content .time {
		flex: 0 0 80px;
	}

	.kamerabolum {
		width: 300px;
	}
}

@media screen and (max-width:1044px) {
	.emoji-item {
		font-size: 20px;
	}

	.header {
		position: fixed;
		height: 30px;
		z-index: 3;
		padding: 0;
		width: 100%;
	}

	.header .header-col-button-nick,
	.header .header-col-button-r,
	.header .header-col-button {
		display: none;
	}

	.header .mobilmenu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.header .mobilmenu div {
		text-align: center;
		font-size: 16px;
		width: auto;
	}

	.header .mobilmenu div i {}

	.header .mobilbars {
		flex: 0 0 50px;
	}

	.header .mobilbars i {
		position: absolute;
		left: 40px;
		top: 10px;
	}

	.header .mobilmenu .mobilmesaj i {
		font-size: 15px;
	}

	.header .mobilmenu .mobilmesaj {
		font-size: 11px;
		padding: 5px 0px;
		background: var(--body);
		color: var(--bodycolor);
		width: 30%;
	}

	.header .mobilmenu .oyanson {
		color: white;
		background: red;
		border: none;
		animation: yansin 2s infinite;
		/* Animasyon adÄ±, sÃ¼resi ve tekrar sayÄ±sÄ± */
	}

	.header .mobilmenulist {
		display: none;
		position: fixed;
		top: 30px;
		left: 0;
		width: auto;
		height: auto;
		background: var(--body);
		color: var(--bodycolor);
		font-size: 15px;
	}

	.header .mobilmenulist ul {
		text-align: left;
		padding: 0 10px;
	}

	.header .mobilmenulist ul li {
		list-style: none;
		margin-left: 0px;
		padding: 5px;
	}

	.header .mobilmenulist ul li:hover {
		background: silver;
	}

	.header .mobilmenulist ul li i {}

	.solbar {
		display: none;
		top: 51;
		z-index: 3;
	}

	.solbar .pcsolbar {
		margin-top: 10px;
	}

	.solbar .pcsolbar .online select {
		padding: 4px;
	}

	.solbar .mobilsolbar {
		display: block;
	}

	.solbar .baslik {
		font-size: 16px;
		font-weight: bold;
		margin: 0;
		margin-left: 20px;
	}

	.solbar .memoji {
		text-align: center;
	}

	.solbar .memoji button {
		margin-top: 10px;
		text-align: center;
		width: 90%;
		padding: 10px;
		border: none;
		font-size: 17px;
		background: #ffffff;
		color: #000000;
		border-bottom: 1px solid silver;
		cursor: pointer;
	}

	.solbar .soltema {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
		margin-left: -41px;
	}

	.solbar .soltema li {
		flex: 0 0 20%;
		list-style: none;
		padding: 5px 10px;
		border-radius: 30px;
		margin: 3px auto;
		font-size: 20px;
		text-align: left;
		cursor: pointer;
	}

	.solbar li .tema6 {
		background: var(--renk6body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}
	.solbar li .tema5 {
		background: var(--renk5body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}

	.solbar li .tema4 {
		background: var(--renk4body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}

	.solbar li .tema3 {
		background: var(--renk3body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}

	.solbar li .tema2 {
		background: var(--renk2body);
		padding: 5px 10px;
		border-radius: 30px;
		color: white;
	}

	.solbar li .tema1 {
		padding: 5px 10px;
		border-radius: 30px;
		background: var(--bodyheader);
		color: var(--body);
	}

	.temaaktif::before {
		position: absolute;
		content: "\f00c";
		font-family: 'FontAwesome';
		font-size: 20px;
		color: white;
		margin: 0;
		margin-top: 15px;
		margin-left: 10px;
		transition: unset;
	}

	.pencereler .mobilozeller {
		display: none;
	}

	.mobilkapat {
		display: block;
		font-size: 11px;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #eaeaea;
		font-weight: bold;
		background: var(--body);
		color: var(--bodycolor);
	}

	.pencereler {
		position: fixed;
		top: 50px;
		left: 0;
		width: 100%;
		height: auto;
		border: none;
		padding: 0;
		overflow: unset;
		border-bottom: 1px solid silver;
		z-index: 2;
	}

	.pencereler .baslik {
		display: none;
	}

	.pencereler .kanallar {
		display: flex;
		flex-wrap: wrap;
		/* max-height: 50px; */
		overflow: auto;
		padding: 5px;
	}

	.pencereler .kanallar .kanalyazdiv {
		font-size: 15px;
	}

	.pencereler .kanallar .kanal {
		display: flex;
		align-items: center;
		margin: 1px;
		padding: 1px;
		border: 1px solid #e7e6e6;
		border-radius: 10px;
	}

	.pencereler .kanallar .kanal .kanalname {
		margin-right: 5px;
		width: calc(100% - 0px);
		padding: 0;
		font-size: 12px;
	}

	.pencereler .kanallar .kanal .kapat {
		display: block;
		padding-left: 5px;
		padding-right: 5px;
		cursor: pointer;
	}

	.pencereler .ozeller {
		display: none;
		position: fixed;
		top: 30px;
		right: 0;
		width: 140px;
		height: 100%;
		background: var(--body);
		z-index: 1;
		padding: 5px 10px;
		overflow-y: auto;
		border-left: 1px solid #c5b7b7;
	}

	.pencereler .ozeller .ozel {
		font-size: 10px;
		margin: 3px 0px;
	}

	.pencereler .ozeller .ozel .ozelname {
		width: calc(100% - 20px);
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		padding: 5px 0;
	}

	.pencereler .ozeller .ozel .kapat {
		display: block;
		padding: 5px 10px;
		margin-right: -7px;
		cursor: pointer;
	}

	.kayanyazi {
		left: 0;
		width: 100%;
		top: 29px;
		height: 20px;
		font-size: 11px;
	}

	.topicbolum {
		display: none;
		top: 70px;
		left: 0;
		height: 30px;
		width: 312px;
	}

	.topicbolum .baslik {
		font-size: 10px;
	}

	.topicbolum .tcol-2 {
		font-size: 10px;
	}

	.nickler {
		display: none;
		position: fixed;
		top: 70px;
		right: -15px;
		width: 110px;
		z-index: 2;
		
	}

	.nickler .mobilkanalinc {
		display: block;
		position: absolute;
		background: var(--body);
		color: var(--bodycolor);
		z-index: 8;
		right: 115px;
		top: 40px;
		border-radius: 5px;
		padding: 0px 5px;
		width: 40px;
	}

	.nickler .mobilkanalinc i {
		font-size: 15px;
	}

	.nickler .mobilkanalinc span {
		font-size: 11px;
	}

	.nickler .kenarakaydir {
		display: block;
	}

	.nickler .nicktara {
		position: relative;
		top: 0;
		right: 0;
		width: 100px;
		background: var(--body);
		display: flex;
		align-items: center;
		margin: 0 auto;
		height: auto;
		color: var(--bodycolor);
		padding: 0 5px;
	}

	.nickler .nicktara input[type="text"] {
		font-size: 10px;
	}

	.nickler ul {
		top: 0px;
	}

	.nickler ul .nick {
		display: flex;
		align-items: center;
		margin: 0px 5px;
		position: relative;
		color: var(--user);
		font-size: 11px;
	}

	.nickler ul .nick .donline {
		width: 8px;
		position: absolute;
		height: 9px;
		z-index: 1;
		border-radius: 20px;
		left: -4px;
		top: 2px;
	}

	.nickler ul .nick .arkaplan {
		width: 20px;
		height: 20px;
	}

	.nickler ul .nick .arkaplan img {
		top: 0;
		width: 20px;
		height: 20px;
	}

	.msg {
		position: fixed;
		font-size: 12px;
		z-index: 1;
		left: 0;
		font-size: 12px;
	}

	.msg .msglogo {
		display: none;
	}

	.msg .kullanicimenu {
		display: none;
		position: fixed;
		top: 30%;
		right: 8px;
		z-index: 2;
	}

	.msg .kullanicimenu ul {
		right: 0;
	}

	.msg .kullaniciackapat {
		position: absolute;
		top: -30px;
		right: 0;
		background: var(--bodyrenk);
		color: var(--bodycolor);
		padding: 5px;
	}

	.msg .yazanlar {
		bottom: 40px;
		right: 100px;
	}

	.msg .kanal {
		height: 98%;
	}

	.msg .kanal .mesaj {
		align-items: flex-start;
	}

	.msg .kullanicimenu .kullaniciackapat {
		top: 0px;
		right: 170px;
	}

	.editor {
		position: fixed;
		height: 35px;
		z-index: 2;
		left: 0;
		padding: 0;
	}

	.editor .co-alt {
		height: 35px;
	}

	.editor .co-ust {
		display: none;
	}

	.renk2 .header {
		color: var(--mobilarkaplan);
	}

	.renk3 .header {
		color: var(--mobilarkaplan);
	}

	.renk4 .header {
		color: var(--mobilarkaplan);
	}

	.renk5 .header {
		color: var(--mobilarkaplan);
	}
	.renk6 .header {
		color: var(--mobilarkaplan);
	}

	.editor #giflist {
		display: none;
		width: 170px;
		height: 190px;
	}

	.editor .co-alt .co-auto:nth-child(1) {
		flex: 0 0 15px;
	}

	.editor .co-alt .co-auto:nth-child(2) {
		display: block;
		flex: 0 1 20px;
	}

	.editor .co-alt .co-auto:nth-child(3) {
		flex: 0 2 90%;
	}

	.editor .co-alt .co-auto:nth-child(4) {
		flex: 0 0 30px;
	}

	.editor .co-alt .co-auto:nth-child(5) {
		flex: 0 0 65px;
	}

	.editor #inputgonder {
		padding: 5px 5px;
		border: none;
		background: var(--bodyheader);
		color: var(--body);
		font-size: 11px;
		margin: 0;
	}

	.msg .kanal .text .emojione {
		width: 15px;
		position: relative;
		top: 2px;
		margin: 0 2px;
	}

	.emojionearea.emojionearea-inline>.emojionearea-editor {
		padding: 5px 0px !important;
		font-size: 15px !important;
		height: 100% !important;
	}

	.emojionearea.emojionearea-inline {
		border: none !important;
		height: 35px !important;
		box-shadow: none !important;
	}

	.emojionearea.emojionearea-inline>.emojionearea-button {
		top: 5px !important;
	}

	.context-menu {
		position: fixed;
		top: 10px;
		right: 100px;
	}

	.context-menu .clickrumuz {
		margin: 0;
	}

	.jconfirm .jconfirm-box-container.jconfirm-no-transition {
		-webkit-transition: none !important;
		transition: none !important;
		width: 100%;
	}

	.kamerabolum {
		right: 0;
		width: 80%;
		right: 10%;
	}

	.kameramin {
		top: 275px;
		right: 0;
		width: 170px !important;
		background: var(--bodyrenk);
		color: var(--bodycolor);
	}

	.kameramin p {
		color: black;
	}
}



/*Ben ekledim  sekilli kanal ismi kısmı*/
@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.8; /* Işık hafifçe göz kırpar gibi olur */
    }
}



/* OZEL GORUSME BASLIGI UST BILGI*/
.ozel-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    
    /* Glassmorphism Etkisi */
    background: rgba(20, 20, 25, 0.85); /* Koyu ve şeffaf panel */
    backdrop-filter: blur(10px); /* Arkadaki mesajları/deseni bulanıklaştırır */
    -webkit-backdrop-filter: blur(10px);
    
    /* Kenarlık ve Gölge */
    border-bottom: 1px solid rgba(0, 255, 255, 0.3); /* Neon mavi ince çizgi */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Yazı Stili */
    padding: 10px 15px;
    color: #00ecff; /* Neon Mavi/Turkuaz yazı */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Daha otoriter bir duruş */
    
    /* İçerik Hizalama */
    display: flex;
    align-items: center;
    gap: 10px; /* İkon ile yazı arasındaki boşluk */
}

/* İkon Parlama Efekti */
.ozel-header i {
    color: #39ff14; /* Neon Yeşil İkon */
    filter: drop-shadow(0 0 5px #39ff14);
}

/* Yanıp Sönen "Canlı" Efekti (Opsiyonel) */
.ozel-header::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #39ff14;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #39ff14;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}
/*OZEL GORUSME BASLIK UST BILGI BITTI*/
/* MOBİL İÇİN ÖZEL AYAR (Ekran genişliği 768px altındaysa) */
@media only screen and (max-width: 768px) {
    .ozel-header {
        font-size: 11px; /* Yazıyı küçülttük */
        padding: 6px 10px; /* Boşlukları daralttık */
        letter-spacing: 0px;
    }
    .ozel-header i {
        font-size: 12px; /* İkonu da küçülttük */
    }
}

/* Nick Vurgusu İçin */
.ozel-header .ozel-nick {
    color: orange; /* Beyaz veya neon sarı yapabilirsin */
    text-shadow: 0 0 8px #00ecff; /* Yazıya parlama efekti */
    padding: 0 5px;
    font-weight: 800;
    text-transform: capitalize; /* Sadece baş harfi büyük */
}
/* ozel penceresi ust bilgi basligi bitti */