.agg-wrapper {
	background: #f3f4f6;
	padding-top: 2rem;
}

.agg-wrapper #content {
	margin: auto;
	background: #ffffff;
	padding: 2rem 0;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h1 {
	text-align: center;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1rem;
}

label {
	font-weight: 600;
	display: block;
	margin-bottom: 0.5rem;
}

input[type="color"],
input[type="range"],
select,
input[type="text"] {
	width: 100%;
	padding: 0.5rem;
	font-size: 1rem;
}

.color-stops {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.stop {
	display: flex;
	gap: 0.5rem;
}

.preview {
	height: 200px;
	border-radius: 8px;
	margin: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.code-box {
	background: #f0f0f0;
	padding: 1rem;
	border-radius: 6px;
	font-family: monospace;
	margin-bottom: 1rem;
	word-break: break-word;
}

.buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

button {
	padding: 0.6rem 1.2rem;
	font-size: 1rem;
	border: none;
	background: #007aff;
	color: white;
	border-radius: 6px;
	cursor: pointer;
}