.v2025 .container {
	max-width: 800px;
	margin: 2rem auto;
	padding: 1rem;
}

.v2025 h1,
.v2025 h2 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: #111;
}

.v2025 .minimal-form {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.v2025 .form-group {
	margin-bottom: 1.2rem;
}

.v2025 label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.4rem;
	color: #555;
}

.v2025 input,
.v2025 textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.v2025 input:focus,
.v2025 textarea:focus {
	border-color: #0077ff;
	outline: none;
}

/* Button */
.v2025 button {
	width: 100%;
	padding: 0.9rem;
	border: none;
	border-radius: 8px;
	background: #0077ff;
	color: white;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
}

.v2025 button:hover {
	background: #005fcc;
}

/* ====== Progress Bar ====== */
.v2025 .progress {
	background: #eee;
	border-radius: 10px;
	overflow: hidden;
	height: 12px;
	margin: 1rem 0;
}

.v2025 .progress-value {
	background: #128A30;
	height: 100%;
	transition: width 0.3s ease-in-out;
}

/* ====== Support Messages ====== */
.v2025 .message-info {
	background: #fff;
	border-radius: 12px;
	padding: 1rem 1.5rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.v2025 .message-info-status {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 0.5rem;
}

.v2025 .message-info-files {
	margin-bottom: 0.5rem;
}

.v2025 .message-info-files a {
	display: inline-block;
	margin-right: 0.5rem;
	font-size: 0.85rem;
	color: #0077ff;
	text-decoration: none;
}

.v2025 .message-info-files a:hover {
	text-decoration: underline;
}

.v2025 .message-info-subject {
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.v2025 .message-info-text {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.5;
}

/* uploading indicator */
form.sending {
	pointer-events: none;
}

form.sending button,
form.sending input[type="submit"],
form.sending input[type="button"],
form.sending input[type="reset"] {
	display: none;
}

form.sending .uploading-indicator {
	display: flex;
}

.uploading-indicator {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 12px;
	background: transparent;
	padding: 6px;
}

.uploading-indicator {
	display: none;
	align-items: center;
	gap: 12px;
	padding: 6px;
}

.upload-svg {
	display: block;
	color: #0077ff;
}

.dot {
	fill: currentColor;
	opacity: 0.85;
	transform-box: fill-box;
	transform-origin: center;
}

.dot-1 {
	animation: dot-fallback 2s ease-in-out infinite 0s;
}

.dot-2 {
	animation: dot-fallback 2s ease-in-out infinite 0.12s;
}

.dot-3 {
	animation: dot-fallback 2s ease-in-out infinite 0.24s;
}

@keyframes dot-fallback {
	0%   { transform: translateY(0) scale(1); opacity: 0.6; }
	40%  { transform: translateY(-6px) scale(1.25); opacity: 1; }
	80%  { transform: translateY(0) scale(1); opacity: 0.7; }
	100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

.v2025.old {
	.container {
		padding: 0;
	}

	input:focus, textarea:focus {
		border: 1px solid #265157;
	}

	.minimal-form {
		background: rgba(0, 0, 0, 0.1);
	}

	label {
		color: white;
	}

	button {
		background-color: #eeff44;
		color: black;
	}

	button:hover {
		background-color: #cedf34;
	}

	#header, h1, h2 {
		color: white;
	}

	.upload-svg {
		color: #eeff44;
	}
}

.v2025-hide {
	display: none;
}