#ug-photo-form li {
	list-style: none;
}
.fu-upload-form .ugc-inner-wrapper {
	box-sizing: border-box;
	max-width: 680px;
	padding: 24px;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 48px rgba(17, 24, 39, 0.08);
	color: #1f2937;
}
.ugc-inner-wrapper .ugc-input-wrapper {
	min-width: 50%;
	padding: 8px 0px;
}
.ugc-inner-wrapper .ugc-input-wrapper input {
	display: block;
}
.ugc-inner-wrapper .ugc-input-wrapper select {
	display: block;
}
.ugc-inner-wrapper .ugc-input-wrapper label {
	font-weight: bold;
	display: block;
	margin-bottom: 6px;
	color: #111827;
}
.ugc-inner-wrapper .ugc-input-wrapper input[type="text"], .ugc-inner-wrapper .ugc-input-wrapper textarea {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #cfd7df;
	border-radius: 6px;
	padding: 10px 12px;
	background: #ffffff;
	color: #111827;
	line-height: 1.4;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}
.ugc-inner-wrapper .ugc-input-wrapper input[type="text"]:focus, .ugc-inner-wrapper .ugc-input-wrapper textarea:focus {
	border-color: #157f6e;
	box-shadow: 0 0 0 3px rgba(21, 127, 110, 0.16);
	outline: none;
}
.ugc-inner-wrapper .ugc-input-wrapper input[type="file"] {
	box-sizing: border-box;
	width: 100%;
	border: 1px dashed #a7b4c2;
	border-radius: 8px;
	padding: 14px;
	background: #f7f9fb;
	color: #1f2937;
	cursor: pointer;
}
.ugc-inner-wrapper .ugc-input-wrapper input[type="file"]:focus {
	border-color: #157f6e;
	box-shadow: 0 0 0 3px rgba(21, 127, 110, 0.16);
	outline: none;
}
.ugc-inner-wrapper h2 {
	padding: 0 0 12px;
	margin: 0 0 12px;
	color: #111827;
	font-size: 24px;
	line-height: 1.2;
}
.fu-upload-form .btn,
.fu-upload-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 0;
	border-radius: 8px;
	padding: 10px 18px;
	background: #157f6e;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.fu-upload-form .btn:hover,
.fu-upload-form input[type="submit"]:hover {
	background: #0f6f61;
	box-shadow: 0 10px 20px rgba(21, 127, 110, 0.2);
	transform: translateY(-1px);
}
.fu-upload-form .btn:disabled,
.fu-upload-form input[type="submit"]:disabled {
	background: #8aa39e;
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}
.ugc-notice {
	border: 1px solid;
	border-radius: 6px;
	padding: 10px 12px;
}
.ugc-notice.success {
	border-color: #3dbc15;
/*	background-color: #19D215;
	color: white;
	 */
}
.ugc-notice.failure {
	border-color: red;
}

.ugc-input-wrapper .checkbox-option-wrapper {
	padding: 3px 0;
	line-height: 14px;
}

.ugc-input-wrapper .checkbox-option-wrapper input {
	float: left; margin-right: 8px;
}

.ugc-input-wrapper .checkbox-option-wrapper label { font-weight: normal; }

.fu-upload-panel {
	display: none;
	margin: 10px 0 16px;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	background: #f7f9fb;
	padding: 14px;
}

.fu-upload-panel.is-visible {
	display: block;
}

.fu-upload-overview {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
	color: #374151;
	font-size: 14px;
	line-height: 1.4;
}

.fu-upload-status {
	font-weight: 700;
	color: #111827;
}

.fu-upload-count {
	color: #4b5563;
}

.fu-upload-actions {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 12px;
}

.fu-submit-placeholder {
	display: none;
}

.fu-overall-progress,
.fu-file-progress {
	overflow: hidden;
	border-radius: 999px;
	background: #dfe6ed;
}

.fu-overall-progress {
	height: 8px;
	margin-bottom: 12px;
}

.fu-overall-progress span,
.fu-file-progress span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: #157f6e;
	transition: width 180ms ease;
}

.fu-file-list {
	display: grid;
	gap: 8px;
}

.fu-file-row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	border: 1px solid #d8dee4;
	border-radius: 8px;
	background: #ffffff;
	padding: 10px;
}

.fu-file-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 30px;
	border-radius: 6px;
	background: #e6f4f1;
	color: #0f6f61;
	font-size: 12px;
	font-weight: 700;
}

.fu-file-details {
	min-width: 0;
}

.fu-file-name,
.fu-file-meta,
.fu-file-state {
	display: block;
	line-height: 1.3;
}

.fu-file-name {
	overflow: hidden;
	color: #111827;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fu-file-meta,
.fu-file-state {
	color: #4b5563;
	font-size: 12px;
}

.fu-file-state {
	font-weight: 700;
	text-align: right;
}

.fu-file-progress {
	height: 6px;
	margin-top: 8px;
}

.fu-file-row.is-uploaded .fu-file-state {
	color: #157f6e;
}

.fu-file-row.is-failed .fu-file-state {
	color: #b42318;
}

.fu-file-row.is-failed .fu-file-progress span {
	background: #b42318;
}

@media (max-width: 520px) {
	.fu-upload-form .ugc-inner-wrapper {
		padding: 18px;
	}

	.fu-upload-overview,
	.fu-file-row {
		align-items: flex-start;
	}

	.fu-file-row {
		grid-template-columns: 1fr;
	}

	.fu-file-state {
		text-align: left;
	}
}
