body {
	font-family: "Source Sans Pro", "Segoe UI", Tahoma, Arial, sans-serif;
	background-color: #f2f5f7;
	color: #5f7676;
	margin: 0;
	padding: 0;
}

/* Navbar styling */
.navbar {
	background-color: #3498db;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 900;
}

.navbar a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}

.navbar a:hover {
	text-decoration: underline;
}

.container {
	max-width: 900px;
	background: white;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin: 15px auto;
	border-radius: 5px;
}

.section-header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 2px solid #3498db;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.section-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-size: 16px;
	line-height: 1.6;
}

.dropdown-container {
	display: flex;
	flex-direction: row;
	gap: 5px;
	margin-top: 15px;
	padding: 10px;
	background: #e6eaed;
	border-radius: 5px;
}

.dropdown-container > .dropdown-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

select {
	width: 100%;
	padding: 8px;
	font-size: 14px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background: white;
}

label strong {
	font-size: 14px;
}

.textarea-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

textarea.head {
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	padding: 10px;
	resize: vertical; /* Allow vertical resizing */
}

button {
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	align-self: flex-start; /* Align the button on the left */
}

.generated-tag {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#generated-tag-text {
	padding: 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
}
#standard-container {
	display: none;
}
