body .edbi-shortcode-builder__selected-item__box {
	width: 280px;
	height: calc(100vh - 120px);
	background: var(--edbi-background-color);
	margin: 8px 20px 20px 0px;
	border-radius: 10px;
	overflow: hidden;

	.edbi-shortcode-builder__selected-item__box__header {
		background: var(--edbi-primary-color);
		padding: 12px 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;

		h3 {
			font-size: 15px;
			font-weight: 500;
			color: var(--edbi-background-color);
		}
		.edbi-shortcode-builder__selected-item__box__header__btn {
			background: #ffffff1a;
			color: var(--edbi-background-color);
			cursor: pointer;
			font-size: 13px;
			padding: 6px 10px;
			border-radius: 6px;
			border: none;
			transition: all 0.3s ease;
		}
	}
}
body .edbi-shortcode-builder__selected-item__box__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

body .edbi-shortcode-builder__selected-item__box__items {
	padding: 0 14px 0 10px !important;
	overflow-y: auto;
	height: 100%;
}

body .edbi-shortcode-builder__selected-item__box__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0px !important;

	.edbi-shortcode-builder__drag-icon {
		cursor: grab;
		font-size: 20px;
		opacity: 0.7;
	}

	img {
		width: 32px;
		height: 32px;
		object-fit: cover;
		border-radius: 8px;
	}

	.edbi-shortcode-builder__selected-item__box__item__name {
		display: inline-block; /* or block/flex child */
		max-width: 130px; /* set a width limit */
		white-space: nowrap; /* keep text in one line */
		overflow: hidden; /* hide overflow */
		text-overflow: ellipsis; /* show ... */
		vertical-align: middle;
		font-weight: 500;
	}

	.edbi-shortcode-builder__selected-item__box__item__close {
		background: var(--edbi-accent-color);
		border-radius: 50%;
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;

		&:hover {
			color: red;
			background: rgba(255, 0, 0, 0.205);
		}
	}
}
body .edbi-shortcode-builder__selected-item__box__item > div {
	display: flex;
	align-items: center;
	gap: 6px;
}
body .edbi-shortcode__border__bottom {
	border-bottom: 1px solid var(--edbi-accent-color);
}
