/* Mover List Designer */

.mcl-wrap *,
.mcl-wrap *::before,
.mcl-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }

.mcl-wrap {
	font-family: 'DM Sans', 'Segoe UI', sans-serif;
	padding: 32px 0;
	color: #042940;
}

.mcl-header-title {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 28px;
	font-weight: 400;
	color: #042940;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mcl-badge {
	display: inline-flex;
	align-items: center;
	background: #d6eef5;
	color: #042940;
	border: 1px solid #9ecfdf;
	border-radius: 20px;
	font-size: 12px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	padding: 3px 10px;
}

.mcl-header-sub {
	font-size: 14px;
	color: #4a7a91;
	margin-bottom: 28px;
}

.mcl-table-wrapper {
	width: 100%;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 24px rgba(4, 41, 64, 0.10);
}

.mcl-table {
	width: 100%;
	border-collapse: collapse;
}

.mcl-table thead tr {
	background: #042940;
}

.mcl-table thead th {
	padding: 18px 20px;
	text-align: left;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9ecfdf;
}

.mcl-table thead th:last-child {
	text-align: center;
}

.mcl-table tbody tr {
	border-bottom: 1px solid #e8f0f4;
	transition: background 0.18s;
	cursor: pointer;
}

.mcl-table tbody tr:last-child {
	border-bottom: none;
}

.mcl-table tbody tr:hover {
	background: #f0f7fa;
}

.mcl-table tbody td {
	padding: 16px 20px;
	vertical-align: middle;
}

.mcl-logo {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	object-fit: contain;
	background: #eaf3f7;
	border: 1px solid #cde4ee;
	padding: 4px;
	display: block;
}

.mcl-logo-fallback {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: linear-gradient(135deg, #cde4ee, #9ecfdf);
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: #042940;
	border: 1px solid #cde4ee;
}

.mcl-name {
	font-size: 15px;
	font-weight: 600;
	color: #042940;
}

.mcl-desc {
	font-size: 13.5px;
	color: #4a7a91;
	max-width: 340px;
	line-height: 1.5;
}

.mcl-action-cell {
	text-align: center;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 20px;
	border-radius: 8px;
	border: 1.5px solid #9ecfdf;
	background: #fff;
	color: #042940;
	font-size: 13px;
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	cursor: pointer;
	transition: all 0.18s;
	white-space: nowrap;
	text-decoration: none;
}
.mcl-view-btn{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 20px;
	border-radius: 8px;
	border: 1.5px solid #9ecfdf;
	background: #fff;
	color: #042940;
	font-size: 13px;
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	cursor: pointer;
	transition: all 0.18s;
	white-space: nowrap;
	text-decoration: none;
}

.mcl-view-btn:hover {
	background: #042940;
	color: #fff;
	border-color: #042940;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(4, 41, 64, 0.20);
	text-decoration: none;
}

.mcl-view-btn:active {
	transform: translateY(0);
}

.mcl-view-btn svg {
	transition: transform 0.18s;
}

.mcl-view-btn:hover svg {
	transform: translateX(2px);
}

.mcl-toast {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%) translateY(80px);
	background: #042940;
	color: #fff;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 8px 30px rgba(4, 41, 64, 0.25);
	transition: transform 0.3s cubic-bezier(.22,1,.36,1), opacity 0.3s;
	opacity: 0;
	z-index: 9999;
	pointer-events: none;
	font-family: 'DM Sans', sans-serif;
}

.mcl-toast.mcl-show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

/* End of Mover List Designer  */