/* ==========================================================================
   MyCreaTools Welcome Banner & Action Header Widget CSS
   ========================================================================== */

.mct-welcome-banner-wrapper {
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}

/* Outer Card Container matching screenshot design (NO hover transform/shadow effect) */
.mct-wb-card {
	background: transparent !important;
	border: 1px solid #f1f5f9;
	border-radius: 24px;
	padding: 24px 30px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	position: relative;
	overflow: hidden;
}

/* Optional subtle background grid pattern overlay if enabled */


/* Left Content Area */
.mct-wb-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
	position: relative;
	z-index: 2;
}

.mct-wb-title {
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 5px 0;
	line-height: 1.25;
	letter-spacing: -0.01em;
	word-break: break-word;
}

.mct-wb-subtitle {
	font-size: 14px;
	font-weight: 500;
	color: #64748b;
	margin: 0;
	line-height: 1.4;
	word-break: break-word;
}

/* Right Action Button Container */
.mct-wb-action {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.mct-wb-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 22px;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #0f172a;
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
	box-sizing: border-box;
	white-space: nowrap;
}

.mct-wb-button:hover {
	background-color: #f8fafc;
	border-color: #cbd5e1;
	color: #0f172a;
}

.mct-wb-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	flex-shrink: 0;
}

.mct-wb-button-icon svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Responsive Adaptations */
@media (max-width: 768px) {
	.mct-wb-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 22px;
		gap: 16px;
	}

	.mct-wb-title {
		font-size: 19px;
	}

	.mct-wb-action {
		width: 100%;
	}

	.mct-wb-button {
		width: 100%;
		justify-content: center;
	}
}
