/* My Account dashboard */
.account-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.account-tabs button {
	background: #fff; border: 1.5px solid var(--pale); border-radius: 20px;
	padding: 8px 18px; font-size: 13.5px; font-weight: 600; cursor: pointer; color: var(--purple);
}
body.dark .account-tabs button { background: #353061; border-color: #4A4570; color: #E8E6F5; }
.account-tabs button.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.account-list { display: flex; flex-direction: column; gap: 12px; }
.account-row {
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: var(--panel-shadow);
}
body.dark .account-row { background: #353061; box-shadow: var(--panel-shadow-dark); }
.account-row .art { font-weight: 700; font-size: 14.5px; }
.account-row .sub { font-size: 12.5px; opacity: .7; margin-top: 2px; }
.account-empty { text-align: center; opacity: .7; padding: 30px; }
.account-cta { text-align: center; margin-top: 20px; }
.ip-welcome-note {
	background: #E8F6EC; color: #1E6B34; border-radius: 10px; padding: 12px 16px; margin: 12px 0; font-size: 13.5px;
}
body.dark .ip-welcome-note { background: #1F3A2A; color: var(--green-l); }
