.node-ui {
	cursor: pointer;
	user-select: none;
}

.active-option {
	background-color: #f1f5f9;
	color: #00000095;
}

.active-color {
	border: 3px solid black;
}

.zoom-panel {
	position: absolute;
	bottom: 16px;
	left: 16px;
	z-index: 20;
	display: flex;
	gap: 4px;
	flex-direction: column;
}

.zoom-panel button {
	width: 28px;
	height: 28px;
	display: flex;
	padding: 8px;
	background-color: white;
	border: 1px solid black;
}

dialog {
	border: none;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 20px;
	max-width: 500px;
	width: 100%;
	text-align: center;
	background-color: #fff;
}

dialog::backdrop {
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding: 20px;
	border-bottom: 1px solid #ccc
}

.modal-header h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
}

.modal-header button {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.5rem;
}

.node-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.node-row:last-child {
	border-bottom: none;
}

.node-content {
	flex: 1;
	text-align: left;
}

.node-content .title {
	font-weight: bold;
	font-size: 1rem;
	margin: 0;
}

.node-content .label {
	color: #555;
	font-size: 0.875rem;
}

.node-content .time {
	color: #888;
	font-size: 0.75rem;
}

.color-box {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 10px;
}

.delete-button {
	background: none;
	border: none;
	cursor: pointer;
	color: #f44336;
}

.delete-button svg {
	width: 20px;
	height: 20px;
}

button.open-modal {
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.node-row-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}
