body {
	font-family: Arial, sans-serif;
	text-align: center;
	margin: 50px;
}

h1 {
	color: #007BFF;
	font-weight: bold;
	padding: 10px 0 30px 0;
	font-size: 32px;
}

.container {
	min-width: 400px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

input,
button {
	width: 425px;
	/*	min-width: 300px; */
	padding: 10px;
	margin: 10px auto;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	box-sizing: border-box;
	display: block;
}

input:disabled {
	background-color: #f8f9fa;
}

button {
	background-color: #007BFF;
	/*	max-width: 120px; */
	color: white;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}

button:hover {
	background-color: #0056b3;
}

input[type="color"] {
	width: 100px;
	height: 100px;
	border: none;
	cursor: pointer;
}

textarea {
	width: 600px;
	height: 200px;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: none;
}

#colorCode {
	font-size: 18px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 150px;
	text-align: center;
	background-color: #f8f9fa;
}

#result input {
	text-align: center;
	font-weight: bold;
	color: #28a745;
}

.notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background-color: #28a745;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	display: none;
	font-size: 16px;
	z-index: 1000;
}

.back-button {
	position: fixed;
	bottom: 20px;
	left: 20px;
	padding: 10px 15px;
	font-size: 16px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
	text-decoration: none;
}

.back-button:hover {
	background-color: #0056b3;
}