/* Feedback */
#feedback-banner a{
	color: #E41815;
	text-decoration: none;
}

.feedback-item {
	border: 1px solid #EBEBEB;
	border-top: 3px double #EBEBEB;

	width: 85%;
	margin-bottom: 15px;
}
.feedback-item-hover{
	border: 1px solid #CC0000;
	border-top: 3px double #CC0000;

	background-repeat: no-repeat;
	background-position: right top;
	background-image: url("/misc/active.jpg");
}
.feedback-nickname{
	padding: 8px;
	border-bottom: 1px solid #EBEBEB;
}
.feedback-content{
	padding: 8px;
}
.img-limit{
	display: block;
	max-width: 500px;
	max-height: 300px;
}
.nickname{
	color: #CC0000;
}
.date{
	color: #CC0000;
}

#page-nav{
	text-align: right;
}
#page-nav a{
	color: #E41815;
	text-decoration: none;
}

/* */
#feedback{
	padding-top: 18px;
	padding-left: 18px;
	padding-right: 18px;

	font-size: 13px;
	line-height: 26px;
	text-align: center;
}

h1 {
	font-size: 18px;
	margin-bottom: 20px;
	text-align: center;
}

.form-group {
	width: 85%;
	margin-bottom: 15px;
}
label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
input[type="text"], textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
}
textarea {
	height: 180px;
	resize: vertical;
	outline: none;
}

/* Upload Image Preview */
#preview {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	flex-wrap: nowrap;
}
.img-slot {
	width: 80px;
	height: 80px;
	border: 1px dashed #ccc;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-width: 80px;
	min-height: 80px;
}
.img-slot .img-item {
	width: 100%;
	height: 100%;
	position: relative;
}
.img-slot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
	border: none;
}
.empty{
	border: none;
}
.del-btn {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 20px;
	height: 20px;
	background: #ff4444;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	cursor: pointer;
	font-size: 12px;
	z-index: 10;
}
#uploadTip {
	color: #007bff;
	font-size: 12px;
	margin-top: 5px;
	display: none;
}

/* Submit */
button#submitBtn {
	padding: 8px 20px;
	background-color: #E41815;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
button:disabled {
	background-color: #6c757d;
	cursor: not-allowed;
}
.tip {
	color: #666;
	font-size: 12px;
	margin-top: 5px;
}
.uploading {
	color: #007bff;
	font-size: 12px;
	margin-top: 5px;
}



@media (max-width:767px) {
	
	.img-limit{
		display: block;
		max-width: 300px;
		max-height: 235px;
	}

}