/* Instagram/Facebook tarzı dairesel profil fotoğrafı kırpma penceresi */
.pfk-img-container {
	max-height: 420px;
	background: #222;
}
.pfk-img-container img {
	display: block;
	max-width: 100%;
}
/* Kırpma alanını daire olarak göster */
.pfk-img-container .cropper-view-box,
.pfk-img-container .cropper-face {
	border-radius: 50%;
}
.pfk-img-container .cropper-view-box {
	outline: 2px solid #fff;
	outline-color: rgba(255, 255, 255, 0.85);
}

/* ===================================================
   Fotoğraf yükleme alanı (form içindeki "Fotoğraf Seç")
   =================================================== */
.bannerresmisecme {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 22px 16px 24px;
	margin-top: 4px;
	background: linear-gradient(180deg, #fbfbfd, #f4f5f8);
	border: 1px solid #eceef2;
	border-radius: 16px;
}

/* Form üzerindeki profil fotoğrafı önizlemesi (Instagram tarzı dairesel avatar) */
#resgost {
	box-sizing: border-box;
	width: 132px !important;
	height: 132px !important;
	border-radius: 50%;
	object-fit: cover;
	float: none !important;
	border: 4px solid #fff;
	background-color: #eef0f4;
	box-shadow: 0 8px 20px -8px rgba(20, 30, 65, .28), 0 0 0 1px #e7e9ee;
	/* Henüz fotoğraf seçilmediğinde hafif bir kamera simgesi göster; gerçek görsel yüklenince üstünü kapatır */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b7bcc8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 34px 34px;
	transition: box-shadow .2s ease;
}

#pickfiles.btn-danger {
	width: auto !important;
	display: inline-block;
	min-width: 190px;
	padding: 11px 22px 11px 46px !important;
	background: linear-gradient(135deg, #f4791f, #e6303f) !important;
	background-repeat: no-repeat, no-repeat;
	background-position: 18px center, 0 0;
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E"),
		linear-gradient(135deg, #f4791f, #e6303f);
	background-size: 18px 18px, cover;
	border: none !important;
	border-radius: 999px !important;
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .2px;
	box-shadow: 0 10px 18px -8px rgba(230, 48, 63, .5);
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
	cursor: pointer;
}

#pickfiles.btn-danger:hover {
	filter: brightness(1.07);
	transform: translateY(-1px);
	box-shadow: 0 13px 22px -8px rgba(230, 48, 63, .55);
}

#pickfiles.btn-danger:active {
	transform: translateY(0);
	filter: brightness(.98);
}

#filelist {
	font-size: 12.5px;
	color: #6b7280;
	text-align: center;
}
#filelist:empty {
	display: none;
}
