.resize-options {
	background-color: #f8f9fa;
	padding: 1.5rem;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
}

.resize-type-selector {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.resize-type-btn {
	flex: 1;
	padding: 1rem;
	text-align: center;
	border: 2px solid #dee2e6;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.resize-type-btn.active {
	border-color: #0d6efd;
	background-color: rgba(13, 110, 253, 0.1);
	color: #0d6efd;
}

.resize-type-btn i {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.dimension-inputs {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.dimension-input-group {
	flex: 1;
}

.aspect-ratio-lock {
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 0.25rem;
	color: #6c757d;
	transition: all 0.3s ease;
}

.aspect-ratio-lock.locked {
	color: #0d6efd;
	background-color: rgba(13, 110, 253, 0.1);
}

/* Kart başlık ve bilgi rozetleri stilleri */
.card-title-info {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #dee2e6;
}

.image-name {
	width: 100%;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.image-info-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.65rem;
	font-size: 0.875rem;
	font-weight: 500;
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	color: #6c757d;
}

.image-info-badge i {
	margin-right: 0.5rem;
	font-size: 0.9rem;
}

/* Görüntü bölüm başlıkları */
.image-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	margin-bottom: 1rem;
}

.image-section-header h6 {
	margin: 0;
	font-weight: 600;
	color: #2c3e50;
}

.image-section-info {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	color: #6c757d;
}

/* Önizleme konteyneri */
.preview-container {
	position: relative;
	overflow: hidden;
	border-radius: 0.5rem;
	background-color: #f8f9fa;
	border: 2px dashed #dee2e6;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	cursor: pointer;
}

.preview-container:hover::after {
	content: '🔍 Büyüt';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	opacity: 1;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.preview-container img {
	max-width: 100%;
	height: auto;
	border-radius: 0.25rem;
	transition: filter 0.3s ease;
}

.preview-container:hover img {
	filter: brightness(0.8);
}

.dimension-badge {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.not-resized-message {
	text-align: center;
	color: #6c757d;
	padding: 2rem;
}

.not-resized-message i {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

/* Lightbox stilleri */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	cursor: pointer;
}

.lightbox img {
	max-width: 90%;
	max-height: 90vh;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	border-radius: 4px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	z-index: 10000;
}

/* Buton stilleri */
.btn-sm {
	padding: 0.4rem 1rem;
	font-size: 0.875rem;
}

.btn i {
	margin-right: 0.5rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
	.card-title-info {
		gap: 0.5rem;
	}

	.image-info-badge {
		font-size: 0.75rem;
		padding: 0.25rem 0.5rem;
	}

	.preview-container {
		min-height: 150px;
	}

	.dimension-badge {
		font-size: 0.75rem;
		padding: 0.35rem 0.75rem;
	}
}