.form-group {
	margin-bottom: 25px;
}

label {
	display: block;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 10px;
}

textarea {
	height: 300px;
}


.input-with-clear {
	position: relative;
}

.clear-btn {
	position: absolute;
	right: 25px;
	top: 10px;
	background: #e74c3c;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 6px 12px;
	cursor: pointer;
	font-size: 12px;
	transition: background 0.3s;
}

.clear-btn:hover {
	background: #c0392b;
}

.radio-group {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.radio-option {
	display: flex;
	align-items: baseline;
	gap: 5px;
	background: #f1f8ff;
	padding: 10px 10px 0 10px;
	border-radius: 8px;
	transition: background 0.3s;
}

.radio-option:hover {
	background: #e3f2fd;
}

.radio-option input {
	margin-right: 5px;
}

.config-group {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.config-input {
	flex: 1;
}

.action-btn {
	background-color: #3498db;
	color: white;
	border: none;
	padding: 12px 10px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s;
	width: 100%;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.action-btn:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.output-actions {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.copy-btn {
	background-color: #4CAF50;
}
.copy-btn:hover {
	background-color: #27ae60;
}

.download-btn {
	background-color: #9b59b6;
}
.download-btn,.action-btn,.copy-btn i {
    font-size: 14px;
}
.download-btn:hover {
	background-color: #8e44ad;
}

.info-text {
	margin-top: 15px;
	font-size: 14px;
	color: #7f8c8d;
	/*text-align: center;*/
	padding: 10px;
	background: #f8f9fa;
	border-radius: 6px;
}


@media (max-width: 768px) {
	.config-group {
		flex-direction: column;
	}

	.radio-group {
		flex-direction: column;
	}
}

.success-message {
	position: fixed;
	top: 100px;
	right: 20px;
	background: #2ecc71;
	color: white;
	padding: 10px 15px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	display: none;
}

.history-dropdown {
	position: absolute;
	/*top: 100%;*/
	/*left: 0;*/
	/*right: 0;*/
	background: white;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 6px 6px;
	max-height: 150px;
	overflow-y: auto;
	z-index: 10;
	display: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.history-item {
	padding: 10px 12px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
}

.history-item:hover {
	background-color: #f5f5f5;
}

.history-item:last-child {
	border-bottom: none;
}
.format-examples {
    background: #f8f9fa;
    margin-top: 20px;
    border-radius: 8px;
    padding: 10px;
    color: #7f8c8d;
    font-size: 14px;
}
