
.yorum-ac-btn{
	width: 100%;
	height: 40px;
	font-size: 17px;
	border-radius: 5px;
	background: transparent;
	color: black;
	border:1px solid gray;
	margin-bottom: 15px;
}
.yorum-ac-btn:hover{
	cursor: pointer;
	border:2px solid gray;
}

.yorumlar-bg{
	width: 90%;
	margin: auto;
	font-family: arial;
	padding-bottom: 1px;
	padding-top: 1px;
	overflow: hidden;
}

.yorumlar-bg h1{
	text-align: center;
	font-size: 20px;
	background: #f5f5f5;
	padding: 10px;
}

.yorum{
	border-radius: 10px;
	background: #f5f5f5;
	box-sizing: border-box;
	border: 2px solid gray;
	padding: 10px;
	margin-bottom: 15px;
	font-size: 15px;
}

.yorumcu-bilgi{
	display: inline-block;
	font-size: 14px;
	margin: 0;
}

.yorumcu-bilgi-tarih{
	float: right;
}

.yorumcu-bilgi-isim{
	margin-right: 15px;
}

.yorum-yazi{
	max-height: 100px;
	overflow: auto;
	font-size: 15px;
}

.yorum-cevap-bg{
	border:1px solid gray;
	padding: 5px;
	border-radius: 5px;
	padding-top: 10px;
	background: #ece1e1;
}

.yorum-cevap-bg .cevaplayan{
	font-size: 14px;
	display: inline-block;
	margin: 0;
}

.cevaplayan-tarih{
	font-size: 14px;
	display: inline-block;
	float: right;
	margin:0;
}

.yorum-cevap-bg .cevap-metin{
	max-height: 100px;
	overflow: auto;
}

@media (max-width: 600px){

	.yorum-cevap-bg .cevaplayan{
		display: block;
	}

	.cevaplayan-tarih, .yorumcu-bilgi-tarih{max-width: 100%; margin-top:1px; display: block; clear: both; float: none;}
}




.yorum-lbl1{
	width: 100%;
	display: block;
	margin-bottom: 10px;
}

.yorum-frm{display: none;	
	margin-top: 15px;
	margin-bottom: 15px;
	border:1px solid gray;
	border-radius: 10px;
	padding: 10px;
	box-sizing: border-box;
	padding-bottom: 20px;
}

.yorum-frm h4{
	text-align: center;
}

.yorum-frm .yorum-lbl{
 display: inline-block;
 width: 49%;
}

.checklbl{
	width: 125px;
	display: inline-block;
	font-size: 15px;
}

.yorum-frm .yoruminp{
	width: 100%;
	height: 35px;
	font-size: 16px;
	box-sizing: border-box;
}

.yorum-textarea{
	width: 99%;
	height: 70px;
	max-width: 99%;
	max-height: 400px;
	min-width: 99%;
	min-height: 30px;
	font-size: 16px;
	box-sizing: border-box;
}

.yorum-sub{
	width: 100px;
	height: 30px;
	float: right;
	background: #2929ff;
	color: white;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
}

.yorum-sub:hover{
	background: darkblue;
}


@media (max-width: 600px){

	.yorum-frm .yorum-lbl{
 	display: block;
 	width: 100%;
 	margin-bottom: 15px;
}

	.yorum-frm .yoruminp{
	width: 100%;
	height: 35px;box-sizing: border-box;
	font-size: 16px;
}

	.yorum-sub{
	width: 100%;
	height: 35px;
	float: none;
	margin-top: 15px;
}

}


#bildirim2 {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffbe6; /* Hafif altın sarısı tonu */
    color: #856404; /* Koyu altın rengi yazı */
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #ffcc00;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    min-width: 250px;
    max-width: 80%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Görünür olduğunda animasyon */
#bildirim2.goster {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Kaybolma efekti */
#bildirim2.gizle {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

.yorum-yonetim-div form textarea{
	width: 100%;
	box-sizing: border-box;
	height: 60px;
}

.yorum-yonetim-div form .cvp-sub{
	background: blue;
	color: white;
	padding: 5px;
	display: inline-block;
	float: left;
	margin-right: 10px;
	font-size: 15px;
	width: 100px;
	margin-top: 10px;
}.yorum-yonetim-div form .cvp-sub:hover{
	background: darkblue;
	cursor: pointer;
}

.yorum-yonetim-div form .sil-sub{
	background: red;
	color: white;
	padding: 5px;
	display: inline-block;
	font-size: 15px;
	width: 100px;
	margin-top: 10px;
}.yorum-yonetim-div form .sil-sub:hover{
	background: darkred;
	cursor: pointer;
}