.addCommandModalContainer {
	position: relative;
}

.addCommand {
	border-style: dashed;
	border-radius: 10px;
	background: none;
	border-color: #1582fd;
	color: #1582fd;
	cursor: pointer;
	padding: 130px 30px;
	transition: 0.2s ease;
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
	margin: 0 30px;
}

.addCommand:hover {
	background-color: #1581fd24;
}

.addForm {
	display: none;
	z-index: 99;
	position: absolute;
	top: 0px;
	left: -340px;
	top: 55px;
	background-color: white;
	border-radius: 15px;
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
	width: 350px;
	height: fit-content;
	padding: 10px 15px;
}

.addForm.active {
	display: block;
}

.addForm .close {
	display: flex;
	justify-content: end;
}

.addForm .closeButton {
	cursor: pointer;
}

.addForm .number {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 5px;
	margin-bottom: 20px;
	width: 80%;
}

.addForm .number .textInput {
	width: 100%;
	border: 1px solid #d1d0d0;
	border-radius: 5px;
	font-size: 17px;
	outline: none;
	padding: 4px;
}

.addForm .number .nameInput:focus {
	border-color: #1582fd;
}

input[type="color"] {
	width: 50px;
	height: 30px;
	border: 1px dashed #1582fd;
	background-color: transparent;
	border-radius: 5px;
	outline: none;
	cursor: pointer;
	transition: 0.1s ease;
}

input[type="color"]:hover {
	background-color: #1581fd5c;
}

input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}

input[type="color"]::-webkit-color-swatch {
	border-radius: 5px;
	padding: 5px;
}

.colorInputContainer {
	display: none;
}

.colorInputContainer.active {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.colorInput {
	display: flex;
	gap: 10px;
}

.addForm .addFormBottom {
	display: flex;
	align-items: flex-end;
}

.addForm .colorsContainer {
	display: flex;
	flex-wrap: wrap;
	width: 43%;
}

.addForm .chooseColor {
	width: 20px;
	height: 20px;
	border-style: dashed;
	border-radius: 0;
	border-width: 1px;
	background: none;
	border-color: #1582fd;
	color: #1582fd;
	display: inline-block;
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 2px;
	transition: 0.2s ease;
}

.addForm .chooseColor:hover {
	background-color: #1581fd24;
}

.addForm .validateContainer {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 50%;
}

.validate {
	border-radius: 5px;
	background: none;
	border: 1px solid #d1d0d0;
	color: #d1d0d0;
	padding: 5px 10px;
	transition: 0.3s ease;
	cursor: pointer;
}

.validate:hover {
	border: 1px solid #1582fd;
	color: #1582fd;
}

/* Hide the default checkbox */
input[type='checkbox'] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #b2b1b1;
	display: inline-block;
	position: relative;
	cursor: pointer;
}

/* Custom background for the checkbox */
input[type='checkbox']::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	transition: background-color 0.3s;
}

/* Add a checkmark */
input[type='checkbox']:checked::after {
	content: '\2714';
	color: white;
	font-size: 16px;
	position: absolute;
	top: -2px;
	left: 3px;
}

.addForm .color {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	margin-bottom: 2px;
}