
/* SLOTS
////////////////////// */

#slots-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

.slot-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	background-color: #f9f9f9;
	transition: all 0.2s;
}

.slot-item:hover {
	background-color: #eee;
}

.slot-item.active {
	border-color: #0075FF;
	background-color: #e6f2ff;
	font-weight: bold;
}

.slot-thumbnail {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.1);
}

.slot-delete {
	background: none;
	border: none;
	color: #999;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 0 2px;
	margin-left: 5px;
}

.slot-delete:hover {
	color: #EF0000;
}

#btn-add-slot {
	margin-top: 10px;
	padding: 5px 15px;
	cursor: pointer;
}
