.wpdl-account {
	--wpdl-border: #e8eaee;
	--wpdl-border-soft: #f0f1f4;
	--wpdl-bg: #ffffff;
	--wpdl-bg-muted: #f7f8fa;
	--wpdl-bg-sunken: #f2f3f6;
	--wpdl-text: #131722;
	--wpdl-text-muted: #70758a;
	--wpdl-text-faint: #9ba0b3;
	--wpdl-primary: #4f46e5;
	--wpdl-primary-hover: #4338ca;
	--wpdl-primary-soft: #eef0fe;
	--wpdl-danger: #e0332f;
	--wpdl-danger-hover: #c8221e;
	--wpdl-success-bg: #e5f7ec;
	--wpdl-success-text: #10763f;
	--wpdl-warning-bg: #fff4de;
	--wpdl-warning-text: #93610b;
	--wpdl-danger-bg: #fdeceb;
	--wpdl-danger-text: #b3271e;
	--wpdl-muted-bg: #f0f1f4;
	--wpdl-radius-sm: 8px;
	--wpdl-radius: 14px;
	--wpdl-radius-lg: 18px;
	--wpdl-shadow-sm: 0 1px 2px rgba(19,23,34,.05);
	--wpdl-shadow: 0 2px 8px rgba(19,23,34,.06), 0 1px 2px rgba(19,23,34,.04);
	--wpdl-shadow-lg: 0 12px 32px rgba(19,23,34,.12), 0 2px 8px rgba(19,23,34,.06);

	font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
	color: var(--wpdl-text);
	-webkit-font-smoothing: antialiased;
	display: grid;
	grid-template-columns: 264px 1fr;
	gap: 1.75rem;
	max-width: 1160px;
	margin: 0 auto;
	align-items: start;
	line-height: 1.5;
}

.wpdl-account * { box-sizing: border-box; }

/* ---------- Locked state ---------- */
.wpdl-account--locked { display: block; }
.wpdl-locked-card {
	max-width: 380px;
	margin: 3rem auto;
	text-align: center;
	padding: 2.75rem 2.25rem;
	border: 1px solid var(--wpdl-border);
	border-radius: var(--wpdl-radius-lg);
	box-shadow: var(--wpdl-shadow);
}
.wpdl-locked-card i, .wpdl-locked-card svg { font-size: 2rem; color: var(--wpdl-primary); margin-bottom: .85rem; }
.wpdl-locked-card h2 { margin: .25rem 0 .5rem; font-size: 1.2rem; font-weight: 700; }
.wpdl-locked-card p { color: var(--wpdl-text-muted); margin-bottom: 1.4rem; font-size: .9rem; }

/* ---------- Sidebar nav ---------- */
.wpdl-account__nav {
	position: sticky;
	top: 1rem;
	border: 1px solid var(--wpdl-border);
	border-radius: var(--wpdl-radius-lg);
	overflow: hidden;
	box-shadow: var(--wpdl-shadow);
	background: var(--wpdl-bg);
}

.wpdl-nav-user {
	padding: 1.75rem 1.25rem 1.5rem;
	text-align: center;
	background: linear-gradient(165deg, var(--wpdl-primary-soft), #ffffff 65%);
	border-bottom: 1px solid var(--wpdl-border);
}
.wpdl-nav-user__avatar {
	width: 60px; height: 60px; border-radius: 50%;
	margin-bottom: .75rem;
	border: 3px solid #fff;
	box-shadow: 0 0 0 2px var(--wpdl-primary), var(--wpdl-shadow-sm);
}
.wpdl-nav-user__name { font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.wpdl-nav-user__email { font-size: .78rem; color: var(--wpdl-text-muted); margin-top: 2px; word-break: break-all; }

.wpdl-nav-list { display: flex; flex-direction: column; padding: .6rem; gap: 2px; }

.wpdl-nav-link {
	display: flex; align-items: center; gap: .7rem;
	padding: .65rem .8rem;
	border-radius: var(--wpdl-radius-sm);
	font-size: .875rem; font-weight: 500;
	color: var(--wpdl-text-muted);
	text-decoration: none;
	transition: background .15s ease, color .15s ease, transform .1s ease;
}
.wpdl-nav-link i, .wpdl-nav-link i { width: 18px; text-align: center; color: inherit; font-size: .95em; }
.wpdl-nav-link:hover { background: var(--wpdl-bg-muted); color: var(--wpdl-text); }
.wpdl-nav-link:active { transform: scale(.98); }
.wpdl-nav-link.is-active { background: var(--wpdl-primary); color: #fff; box-shadow: 0 4px 10px rgba(79,70,229,.28); }
.wpdl-nav-link.is-active:hover { background: var(--wpdl-primary-hover); }
.wpdl-nav-link--logout { margin-top: .35rem; padding-top: .8rem; border-top: 1px solid var(--wpdl-border-soft); border-radius: 0 0 var(--wpdl-radius-sm) var(--wpdl-radius-sm); }

/* ---------- Content shell ---------- */
.wpdl-account__content { min-width: 0; transition: opacity .15s ease; }
.wpdl-account__content.is-loading { opacity: .55; pointer-events: none; }
.wpdl-fade-in { animation: wpdlFadeIn .28s ease; }
@keyframes wpdlFadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

.wpdl-panel-header { margin-bottom: 1.25rem; }
.wpdl-panel-header h1 { font-size: 1.5rem; margin: 0; font-weight: 700; letter-spacing: -.02em; }

.wpdl-notice {
	display: flex; align-items: center; gap: .6rem;
	padding: .85rem 1.1rem; border-radius: var(--wpdl-radius-sm);
	font-size: .875rem; margin-bottom: 1.1rem; font-weight: 500;
}
.wpdl-notice--success { background: var(--wpdl-success-bg); color: var(--wpdl-success-text); }
.wpdl-notice--error { background: var(--wpdl-danger-bg); color: var(--wpdl-danger-text); }

/* ---------- Dashboard home ---------- */
.wpdl-home__welcome h1 { font-size: 1.65rem; margin: 0 0 .25rem; font-weight: 700; letter-spacing: -.02em; }
.wpdl-home__welcome p { color: var(--wpdl-text-muted); margin: 0 0 1.5rem; font-size: .92rem; }

.wpdl-stat-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
	margin-bottom: 1.5rem;
}
.wpdl-stat-card {
	display: flex; align-items: center; gap: 1rem;
	border: 1px solid var(--wpdl-border); border-radius: var(--wpdl-radius);
	padding: 1.25rem; box-shadow: var(--wpdl-shadow-sm);
	transition: box-shadow .15s ease, transform .15s ease;
}
.wpdl-stat-card:hover { box-shadow: var(--wpdl-shadow); transform: translateY(-1px); }
.wpdl-stat-card i , .wpdl-stat-card svg{
	font-size: 1.15rem; color: var(--wpdl-primary);
	width: 42px; height: 42px; border-radius: 11px;
	background: var(--wpdl-primary-soft);
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wpdl-stat-card__value { font-size: 1.4rem; font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.wpdl-stat-card__link { color: var(--wpdl-primary); text-decoration: none; }
.wpdl-stat-card__label { font-size: .78rem; color: var(--wpdl-text-muted); margin-top: 3px; }

/* ---------- Cards (shared) ---------- */
.wpdl-card {
	border: 1px solid var(--wpdl-border);
	border-radius: var(--wpdl-radius);
	box-shadow: var(--wpdl-shadow-sm);
	background: var(--wpdl-bg);
	margin-bottom: 1.1rem;
}
.wpdl-card__head {
	padding: 1.1rem 1.35rem;
	border-bottom: 1px solid var(--wpdl-border-soft);
	display: flex; align-items: center; justify-content: space-between;
}
.wpdl-card__head h2 {
	font-size: .95rem; margin: 0; display: flex; align-items: center; gap: .55rem; font-weight: 600;
}
.wpdl-card__head h2 i , .wpdl-card__head h2 svg{ color: var(--wpdl-text-faint); }
.wpdl-card__body { padding: 1.35rem; }
.wpdl-card__body--flush { padding: 0; }
.wpdl-card__foot { padding: 1.1rem 1.35rem; border-top: 1px solid var(--wpdl-border-soft); display: flex; justify-content: flex-end; gap: .6rem; }
.wpdl-card__foot--flush { border-top: 1px solid var(--wpdl-border-soft); margin: 1.2rem -1.35rem -1.35rem; }

.wpdl-link { color: var(--wpdl-primary); text-decoration: none; font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }
.wpdl-link:hover { color: var(--wpdl-primary-hover); }

/* ---------- Toolbar ---------- */
.wpdl-toolbar { display: flex; gap: .75rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.wpdl-user-search { 
	position: relative; flex: 1; min-width: 220px;
	display: flex;
    flex-direction: row;
    align-items: center;
 }

.wpdl-user-search i, .wpdl-user-search svg { position: absolute; left: .8rem; top: 50%; transform: translateY(-50%); color: var(--wpdl-text-faint); font-size: .8rem; }
.wpdl-user-search__input { width: 100%; padding: .6rem .8rem .6rem 2.2rem !important; border: 1px solid var(--wpdl-border); border-radius: var(--wpdl-radius-sm); font-size: .875rem; background: var(--wpdl-bg); }
.wpdl-user-search__input:focus { outline: none; border-color: var(--wpdl-primary); box-shadow: 0 0 0 3.5px var(--wpdl-primary-soft); }
.wpdl-select { padding: .6rem .8rem; border: 1px solid var(--wpdl-border); border-radius: var(--wpdl-radius-sm); font-size: .875rem; background: var(--wpdl-bg); font-weight: 500; }
.wpdl-select:focus { outline: none; border-color: var(--wpdl-primary); }

/* ---------- Table ---------- */
.wpdl-table-wrap { overflow-x: auto; }
.wpdl-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.wpdl-table thead th {
	text-align: left; padding: .75rem 1.35rem; font-weight: 600; font-size: .78rem;
	text-transform: uppercase; letter-spacing: .03em;
	color: var(--wpdl-text-faint); background: var(--wpdl-bg-muted);
	border-bottom: 1px solid var(--wpdl-border-soft); white-space: nowrap;
}
.wpdl-table tbody td { padding: .9rem 1.35rem; border-bottom: 1px solid var(--wpdl-border-soft); vertical-align: middle; }
.wpdl-table tbody tr:last-child td { border-bottom: none; }
.wpdl-table tbody tr { transition: background .1s ease; }
.wpdl-table tbody tr:hover { background: var(--wpdl-bg-muted); }
.wpdl-td-strong { font-weight: 600; }
.wpdl-td-right { text-align: right; white-space: nowrap; }
.wpdl-inline-icon { font-size: .65rem; color: var(--wpdl-text-faint); margin-left: .2rem; }

.wpdl-row-empty { text-align: center; color: var(--wpdl-text-muted); padding: 3rem 1rem !important; }
.wpdl-row-empty i, .wpdl-row-empty svg { display: block; font-size: 1.5rem; margin-bottom: .5rem; color: var(--wpdl-text-faint); }
.wpdl-row-empty svg {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 40px !important;
  height: 40px !important;
}

/* ---------- Skeleton loaders ---------- */
.wpdl-skeleton-line {
	height: 14px; border-radius: 6px; width: 70%;
	background: linear-gradient(90deg, var(--wpdl-bg-sunken) 25%, var(--wpdl-border-soft) 37%, var(--wpdl-bg-sunken) 63%);
	background-size: 400% 100%;
	animation: wpdlShimmer 1.3s ease infinite;
}
.wpdl-skeleton-card {
	height: 150px; border-radius: var(--wpdl-radius);
	background: linear-gradient(90deg, var(--wpdl-bg-sunken) 25%, var(--wpdl-border-soft) 37%, var(--wpdl-bg-sunken) 63%);
	background-size: 400% 100%;
	animation: wpdlShimmer 1.3s ease infinite;
}
@keyframes wpdlShimmer {
	0% { background-position: 100% 50%; }
	100% { background-position: 0 50%; }
}

/* ---------- Badges ---------- */
.wpdl-badge {
	display: inline-block; padding: .22rem .65rem; border-radius: 999px;
	font-size: .72rem; font-weight: 600; text-transform: capitalize;
	background: var(--wpdl-muted-bg); color: var(--wpdl-text-muted);
}
.wpdl-badge--success { background: var(--wpdl-success-bg); color: var(--wpdl-success-text); }
.wpdl-badge--active { background: var(--wpdl-success-bg); color: var(--wpdl-success-text); }
.wpdl-badge--warning { background: var(--wpdl-warning-bg); color: var(--wpdl-warning-text); }
.wpdl-badge--danger { background: var(--wpdl-danger-bg); color: var(--wpdl-danger-text); }
.wpdl-badge--muted { background: var(--wpdl-muted-bg); color: var(--wpdl-text-muted); }
.wpdl-badge--info { background: #e0f2fe; color: #0369a1; }
.wpdl-badge--sm { padding: .15rem .5rem; font-size: .65rem; }

/* ---------- Buttons ---------- */
.wpdl-btn {
	display: inline-flex; align-items: center; gap: .4rem;
	padding: .55rem 1rem; border-radius: var(--wpdl-radius-sm); font-size: .8125rem; font-weight: 600;
	border: 1px solid transparent; cursor: pointer; text-decoration: none;
	background: var(--wpdl-bg); transition: background .15s ease, border-color .15s ease, transform .1s ease, box-shadow .15s ease;
}
.wpdl-btn:active { transform: scale(.97); }
.wpdl-btn--sm { padding: .4rem .75rem; font-size: .76rem; }
.wpdl-btn--primary { background: var(--wpdl-primary); color: #fff; box-shadow: 0 2px 6px rgba(79,70,229,.25); }
.wpdl-btn--primary:hover { background: var(--wpdl-primary-hover);color: #fff; }
.wpdl-btn--primary:focus {color: #fff !important;}
.wpdl-btn--ghost { border-color: var(--wpdl-border); color: var(--wpdl-text); }
.wpdl-btn--ghost:hover { background: var(--wpdl-bg-muted); border-color: var(--wpdl-text-faint); }
.wpdl-btn--danger { background: var(--wpdl-danger-bg); color: var(--wpdl-danger-text); border-color: transparent; }
.wpdl-btn--danger:hover { background: var(--wpdl-danger); color: #fff; }
.wpdl-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Pagination ---------- */
.wpdl-pagination { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-top: 1.25rem; }
.wpdl-page-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--wpdl-border); background: var(--wpdl-bg); cursor: pointer; font-size: .8rem; color: var(--wpdl-text); transition: background .15s ease; }
.wpdl-page-btn:hover:not(:disabled) { background: var(--wpdl-bg-muted); border-color: var(--wpdl-primary); color: var(--wpdl-primary); }
.wpdl-page-btn:disabled { opacity: .35; cursor: not-allowed; }
.wpdl-page-info { font-size: .8125rem; color: var(--wpdl-text-muted); font-weight: 500; }

/* ---------- Downloads grid ---------- */
.wpdl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.wpdl-download-card {
	background: #fff;
	border: 1px solid var(--wpdl-border); border-radius: var(--wpdl-radius);
	padding: 1.2rem; box-shadow: var(--wpdl-shadow-sm); display: flex; flex-direction: column; gap: .6rem;
	transition: box-shadow .15s ease, transform .15s ease;
}
.wpdl-download-card:hover { box-shadow: var(--wpdl-shadow); transform: translateY(-2px); }
.wpdl-download-card__thumb { width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.wpdl-download-card__name { font-weight: 600; font-size: .88rem; }
.wpdl-download-card__meta { font-size: .74rem; color: var(--wpdl-text-muted); }
.wpdl-download-card .wpdl-btn { align-self: flex-start; margin-top: auto; }

/* ---------- Empty state ---------- */
.wpdl-empty-state { text-align: center; padding: 3.5rem 1.5rem; color: var(--wpdl-text-muted); grid-column: 1 / -1; }
.wpdl-empty-state i, .wpdl-empty-state svg{ font-size: 2rem; margin-bottom: .7rem; display: block; color: var(--wpdl-text-faint); }

/* ---------- Order detail ---------- */
.wpdl-breadcrumbs { font-size: .8rem; color: var(--wpdl-text-muted); margin-bottom: .9rem; }
.wpdl-breadcrumbs a.wpdl-spa-link { color: var(--wpdl-text-muted); text-decoration: none; cursor: pointer; font-weight: 500; }
.wpdl-breadcrumbs a.wpdl-spa-link:hover { color: var(--wpdl-primary); }
.wpdl-breadcrumbs i, .wpdl-breadcrumbs svg{ font-size: .65rem; margin: 0 .45rem; color: var(--wpdl-text-faint); }

.wpdl-order-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.wpdl-order-header h1 { font-size: 1.4rem; margin: 0 0 .45rem; font-weight: 700; letter-spacing: -.02em; }
.wpdl-order-header__meta { display: flex; align-items: center; gap: .65rem; font-size: .82rem; color: var(--wpdl-text-muted); }
.wpdl-order-header__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.wpdl-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--wpdl-text-faint); }

.wpdl-order-grid { display: grid; grid-template-columns: 1fr 300px; gap: 1.1rem; align-items: start; }

.wpdl-order-item {
	display: flex; align-items: center; gap: 1rem;
	padding: 1.1rem 1.35rem; border-bottom: 1px solid var(--wpdl-border-soft); flex-wrap: wrap;
}
.wpdl-order-item:last-child { border-bottom: none; }
.wpdl-order-item__thumb { width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wpdl-order-item__info { flex: 1; min-width: 160px; }
.wpdl-order-item__name { font-weight: 600; font-size: .88rem; }
.wpdl-order-item__meta { font-size: .76rem; color: var(--wpdl-text-muted); margin-top: 4px; display: flex; align-items: center; gap: .4rem; }
.wpdl-sep { opacity: .5; }
.wpdl-order-item__price { font-weight: 600; font-size: .88rem; display: flex; flex-direction: column; align-items: flex-end; }
.wpdl-original-price { text-decoration: line-through; color: var(--wpdl-text-faint); font-weight: 400; font-size: .78rem; }

.wpdl-kv-list { display: flex; flex-direction: column; gap: .6rem; }
.wpdl-kv-row { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; gap: 1rem; }
.wpdl-kv-row span:first-child { color: var(--wpdl-text-muted); }
.wpdl-kv-row span:last-child { font-weight: 500; text-align: right; }
.wpdl-kv-row--total span { font-weight: 700; font-size: .98rem; }
.wpdl-kv-divider { height: 1px; background: var(--wpdl-border-soft); margin: .35rem 0; }

.wpdl-payment-row { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .85rem; flex-wrap: wrap; }
.wpdl-payment-brand { font-weight: 600; text-transform: capitalize; }

.wpdl-timeline { display: flex; flex-direction: column; gap: 1.1rem; }
.wpdl-timeline__item { padding-left: 1.1rem; border-left: 2px solid var(--wpdl-primary-soft); position: relative; }
.wpdl-timeline__item::before {
	content: ""; position: absolute; left: -5px; top: 3px;
	width: 8px; height: 8px; border-radius: 50%; background: var(--wpdl-primary);
}
.wpdl-timeline__title { font-weight: 600; font-size: .85rem; }
.wpdl-timeline__desc { font-size: .78rem; color: var(--wpdl-text-muted); margin-top: 2px; }

/* ---------- Account form ---------- */
.wpdl-account-form .wpdl-field { margin-bottom: 1.15rem; }
.wpdl-form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.wpdl-field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; }
.wpdl-field input {
	width: 100%; padding: .65rem .8rem; border: 1px solid var(--wpdl-border);
	border-radius: var(--wpdl-radius-sm); font-size: .875rem; background: var(--wpdl-bg);
}
.wpdl-field input:focus { outline: none; border-color: var(--wpdl-primary); box-shadow: 0 0 0 3.5px var(--wpdl-primary-soft); }
.wpdl-form-divider { display: flex; align-items: center; margin: 1.6rem 0 .4rem; font-size: .82rem; font-weight: 600; color: var(--wpdl-text-muted); }
.wpdl-form-divider::after { content: ""; flex: 1; height: 1px; background: var(--wpdl-border-soft); margin-left: .75rem; }
.wpdl-form-hint { font-size: .78rem; color: var(--wpdl-text-muted); margin: 0 0 1.1rem; }
.wpdl-form-message { padding: .8rem 1rem; border-radius: var(--wpdl-radius-sm); font-size: .85rem; font-weight: 500; margin-bottom: 1.2rem; }
.wpdl-form-message--success { 
	background: var(--wpdl-success-bg) !important; 
	color: var(--wpdl-success-text) !important; 
}
.wpdl-form-message--error { background: var(--wpdl-danger-bg); color: var(--wpdl-danger-text); }

/* ---------- Toasts ---------- */
.wpdl-toast-stack {
	position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100000;
	display: flex; flex-direction: column; gap: .6rem; max-width: 340px;
	pointer-events: none;
}
.wpdl-toast {
	display: flex; align-items: center; gap: .6rem;
	background: #1a1d29; color: #fff;
	padding: .85rem 1rem; border-radius: var(--wpdl-radius-sm, 10px);
	box-shadow: var(--wpdl-shadow-lg, 0 12px 32px rgba(19,23,34,.28));
	font-size: .85rem; font-weight: 500;
	opacity: 0; transform: translateY(8px) scale(.98);
	transition: opacity .2s ease, transform .2s ease;
	pointer-events: auto;
}
.wpdl-toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.wpdl-toast i, .wpdl-toast svg { font-size: 1rem; flex-shrink: 0; }
.wpdl-toast--success i, .wpdl-toast--success svg { color: #4ade80; }
.wpdl-toast--error i, .wpdl-toast--error svg{ color: #f87171; }
.wpdl-toast span { flex: 1; line-height: 1.4; }
.wpdl-toast__close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0; flex-shrink: 0; }
.wpdl-toast__close:hover { color: #fff; }

/* ---------- Custom modal ---------- */
.wpdl-user-modal-root:empty { display: none; }
.wpdl-user-modal-overlay {
	position: fixed; inset: 0; z-index: 100001;
	background: rgba(19,23,34,.55);
	display: flex; align-items: center; justify-content: center; padding: 1.25rem;
	opacity: 0; transition: opacity .18s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
}
.wpdl-user-modal-overlay.is-visible { opacity: 1; }
.wpdl-user-modal {
	background: #fff; border-radius: var(--wpdl-radius-lg, 18px);
	box-shadow: var(--wpdl-shadow-lg, 0 20px 50px rgba(19,23,34,.3));
	padding: 2rem 1.85rem 1.85rem; max-width: 380px; width: 100%; text-align: center;
	transform: scale(.94) translateY(8px); transition: transform .18s ease;
}
.wpdl-user-modal-overlay.is-visible .wpdl-user-modal { transform: scale(1) translateY(0); }
.wpdl-user-modal__icon {
	width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 1rem;
	display: flex; align-items: center; justify-content: center;
	background: var(--wpdl-primary-soft, #eef0fe); color: var(--wpdl-primary, #4f46e5); font-size: 1.25rem;
}
.wpdl-user-modal__icon--danger { background: var(--wpdl-danger-bg, #fdeceb); color: var(--wpdl-danger, #e0332f); }
.wpdl-user-modal__title { font-size: 1.1rem; font-weight: 700; margin: 0 0 .55rem; color: var(--wpdl-text, #131722); }
.wpdl-user-modal__body { font-size: .875rem; color: var(--wpdl-text-muted, #70758a); margin: 0 0 1.6rem; line-height: 1.55; }
.wpdl-user-modal__actions { display: flex; gap: .7rem; }
.wpdl-user-modal__actions .wpdl-btn {
	flex: 1 1 0; justify-content: center; padding: .7rem 1rem; font-size: .85rem;
	border-radius: var(--wpdl-radius-sm, 10px);
}
.wpdl-user-modal__actions .wpdl-btn--ghost {
	border-color: var(--wpdl-border, #e8eaee); color: var(--wpdl-text, #131722); background: #fff;
}
.wpdl-user-modal__actions .wpdl-btn--ghost:hover { background: var(--wpdl-bg-muted, #f7f8fa); }
.wpdl-user-modal__actions .wpdl-btn--danger {
	background: var(--wpdl-danger, #e0332f); color: #fff; box-shadow: 0 2px 8px rgba(224,51,47,.3);
}
.wpdl-user-modal__actions .wpdl-btn--danger:hover { background: var(--wpdl-danger-hover, #c8221e); }
.wpdl-user-modal__actions .wpdl-btn--primary {
	background: var(--wpdl-primary, #4f46e5); color: #fff; box-shadow: 0 2px 8px rgba(79,70,229,.3);
}
.wpdl-user-modal__actions .wpdl-btn--primary:hover { background: var(--wpdl-primary-hover, #4338ca); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
	.wpdl-account { grid-template-columns: 1fr; }
	.wpdl-account__nav { position: static; }
	.wpdl-nav-list { flex-direction: row; overflow-x: auto; padding-bottom: .3rem; }
	.wpdl-nav-link { flex-shrink: 0; }
	.wpdl-nav-link--logout { border-top: none; margin-top: 0; }
	.wpdl-order-grid { grid-template-columns: 1fr; }
	.wpdl-stat-grid { grid-template-columns: 1fr; }
	.wpdl-form-row--split { grid-template-columns: 1fr; }
	.wpdl-toast-stack { left: 1rem; right: 1rem; max-width: none; }
}
/* Custom CSS */
.txt-no-overflow{
	width: 180px; 
	word-wrap: break-word;
}

.wpdl-user-modal-overlay{
	    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wpdl-user-modal-overlay .wpdl-user-modal{
	    top: 10%;
    height: 225px;
    display: flex;
    /* width: 316px; */
    flex-direction: column;
}

.wpdl-empty-state{
	display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}