
.prompt-item {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 20px;
	position: relative;
	cursor: move;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: all 0.2s;
}
.prompt-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	border-color: #F59E0B;
}
.prompt-item.disabled {
	opacity: 0.6;
	background: #f9f9f9;
}
.prompt-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
}
.prompt-handle {
	cursor: move;
	padding: 5px;
	color: #999;
	font-size: 20px;
}
.prompt-handle:hover {
	color: #F59E0B;
}
.prompt-fields {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 20px;
	align-items: start;
}
.icon-selector {
	font-size: 36px;
	text-align: center;
	cursor: pointer;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	background: #f9f9f9;
	transition: all 0.2s;
}
.icon-selector:hover {
	border-color: #F59E0B;
	background: #fff7ed;
	transform: scale(1.05);
}
.icon-picker {
	display: none;
	position: absolute;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	z-index: 1000;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}
.icon-picker.active {
	display: grid;
}
.icon-option {
	font-size: 32px;
	cursor: pointer;
	padding: 10px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.2s;
}
.icon-option:hover {
	background: #fff7ed;
	transform: scale(1.15);
}
.prompt-text {
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 15px;
	transition: all 0.2s;
}
.prompt-text:focus {
	border-color: #F59E0B;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
	outline: none;
}
#add-prompt {
	background: #fff;
	border: 2px dashed #e0e0e0;
	padding: 15px 25px;
	border-radius: 8px;
	transition: all 0.2s;
}
#add-prompt:hover {
	border-color: #F59E0B;
	color: #F59E0B;
	background: #fff7ed;
}
#save-prompts {
	background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
	transition: all 0.3s;
}
#save-prompts:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}
#reset-prompts {
	border: 2px solid #e0e0e0;
	padding: 10px 20px;
	border-radius: 8px;
}
#reset-prompts:hover {
	border-color: #dc2626;
	color: #dc2626;
}
