.spp-bundle-remove-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
}

.spp-bundle-remove-popup[hidden] {
	display: none !important;
}

.spp-bundle-remove-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.spp-bundle-remove-dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	max-width: 480px;
	width: 90%;
	z-index: 100001;
}

.spp-bundle-remove-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 24px;
	border-bottom: 1px solid #E6E9F0;
}

.spp-bundle-remove-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.spp-bundle-remove-close {
	background: #313131;
	border: none;
	font-size: 22px;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.spp-bundle-remove-body {
	font-size: 16px;
	line-height: 24px;
	padding: 24px;
}

.spp-bundle-remove-body p {
	margin: 0;
}

.spp-bundle-remove-footer {
	display: flex;
	gap: 12px;
	padding: 24px;
	border-top: 1px solid #E6E9F0;
}

.spp-bundle-remove-cancel,
.spp-bundle-remove-confirm {
	flex: 1;
	border-radius: 8px;
	padding: 12px 16px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
}

.spp-bundle-remove-cancel {
	background: #fff;
	border: 1px solid #E6E9F0;
	color: #001739;
}

.spp-bundle-remove-confirm {
	background: #001739;
	border: 1px solid #001739;
	color: #fff;
}

body.spp-bundle-remove-open {
	overflow: hidden;
}

@media only screen and (max-width: 528px) {
	.spp-bundle-remove-header,
	.spp-bundle-remove-body,
	.spp-bundle-remove-footer {
		padding: 16px;
	}

	.spp-bundle-remove-footer {
		flex-direction: column;
	}
}
