.star-btn {
	color: #c6c6c6;
	font-size: 20px;
	cursor: pointer;
}

.star-btn:hover {
	color: #ffc107;
	cursor: pointer;
	text-decoration: none;
}

.star-btn:focus {
	color: #ffc107;
	cursor: pointer;
	text-decoration: none;
}

.star-btn.selected-star {
	color: #ffc107;
	text-decoration: none;
}

.star-btn.hover-star {
	color: #ffc107;
	text-decoration: none;
}

/* Resim önizleme stilleri */
.image-preview-container {
	position: relative;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease;
	margin: 8px;
}

.image-preview-container:hover {
	transform: scale(1.05);
}

.image-preview-container img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
}

.image-remove-btn {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 25px;
	height: 25px;
	border: 2px solid white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	line-height: 1;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	font-size: 12px;
	z-index: 10;
}

.image-remove-btn:hover {
	background-color: #dc3545 !important;
	border-color: white;
	transform: scale(1.1);
}

.submit-review-button {
	float: right;
	background-color: #000000;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

.submit-review-button:hover {
	background-color: #5c5c5c;
}