/**
 * Bridge AccessFlow SPA visuals to the Store Customer Dashboard design system.
 * Reuses theme tokens from dynamic-style.php (:root --ttm-*).
 * Does not redefine those tokens.
 */

/* -------------------------------------------------------------------------
   Page chrome: match full-app Customer Dashboard experience
--------------------------------------------------------------------------- */
body.ttm-accessflow-dashboard-page {
	background:
		radial-gradient(circle at 85% 55%, rgba(246, 147, 222, 0.25) 0%, transparent 55%),
		radial-gradient(circle at 45% 30%, rgba(183, 147, 246, 0.2) 0%, transparent 55%),
		radial-gradient(circle at 5% 5%, rgba(91, 239, 170, 0.15) 0%, transparent 55%),
		var(--ttm-greycolor);
}

body.ttm-accessflow-dashboard-page #masthead,
body.ttm-accessflow-dashboard-page .site-header,
body.ttm-accessflow-dashboard-page #site-header,
body.ttm-accessflow-dashboard-page .ttm-header-style-wrapper,
body.ttm-accessflow-dashboard-page .ttm-titlebar-wrapper,
body.ttm-accessflow-dashboard-page .site-footer,
body.ttm-accessflow-dashboard-page #colophon,
body.ttm-accessflow-dashboard-page footer.site-footer,
body.ttm-accessflow-dashboard-page .ttm-footer,
body.ttm-accessflow-dashboard-page .footer {
	display: none !important;
}

body.ttm-accessflow-dashboard-page .site-content-wrapper,
body.ttm-accessflow-dashboard-page .site-content,
body.ttm-accessflow-dashboard-page #content,
body.ttm-accessflow-dashboard-page .main-holder,
body.ttm-accessflow-dashboard-page .site-main,
body.ttm-accessflow-dashboard-page .site-main-inner {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
	width: 100% !important;
	background: transparent !important;
}

body.ttm-accessflow-dashboard-page .entry-content > *:not(.ttm-accessflow-dashboard):not(script):not(style) {
	display: none;
}
.ttm-accessflow-dashboard fieldset {
    border-color: var(--ttm-bordercolor);
    border-radius: 10px;
}
/* -------------------------------------------------------------------------
   Design tokens: map AccessFlow vars → existing Store dashboard vars
--------------------------------------------------------------------------- */
.ttm-accessflow-dashboard {
	--accent: var(--ttm-skincolor);
	--accent-soft: var(--light-purplecolor);
	--bg: var(--ttm-greycolor);
	--surface: var(--ttm-whitecolor);
	--text: var(--ttm-blackishcolor);
	--muted: var(--body-fonts-color);
	--border: var(--ttm-bordercolor);
	--danger: var(--dark-redcolor);
	--radius: 15px;
	--shadow: var(--ttm-boxshadow);
	--btn-hover: #F59E0B;
	box-sizing: border-box;
	color: var(--text);
	font-family: var(--body-font-family), system-ui, sans-serif;
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: var(--special-element-fontweight);
	margin: 0;
	padding: 50px;
	width: 100%;
	min-height: 100vh;
	background: transparent;
}

.ttm-accessflow-dashboard *,
.ttm-accessflow-dashboard *::before,
.ttm-accessflow-dashboard *::after {
	box-sizing: inherit;
}

/* Keep dark theme usable, still preferring Store tokens where defined */
:root[data-theme="dark"] .ttm-accessflow-dashboard,
.ttm-accessflow-dashboard[data-theme="dark"] {
	--bg: var(--ttm-secondarycolor);
	--surface: var(--ttm-blackishcolor);
	--text: var(--ttm-whitecolor);
	/*--muted: var(--body-fonts-color);*/
	--muted: #ffe6f5;
	--border: var(--ttm-bordercolor);
	--shadow: var(--ttm-boxshadow);
}

.ttm-modal-layer {
	--accent: var(--ttm-skincolor);
	--accent-soft: var(--light-purplecolor);
	--bg: var(--ttm-greycolor);
	--surface: var(--ttm-whitecolor);
	--text: var(--ttm-blackishcolor);
	--muted: var(--body-fonts-color);
	--border: var(--ttm-bordercolor);
	--danger: var(--dark-redcolor);
	--radius: 15px;
	--shadow: var(--ttm-boxshadow);
	font-family: var(--body-font-family), system-ui, sans-serif;
}

/* -------------------------------------------------------------------------
   Shell layout: mirror .ttm-dashboard / .ttm-sidebar / .ttm-dashboard-content
--------------------------------------------------------------------------- */
.ttm-accessflow-dashboard .shell {
	display: block;
	position: relative;
	min-height: calc(100vh - 100px);
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.ttm-accessflow-dashboard .side {
	position: fixed;
	top: 50px;
	left: 50px;
	width: 288px;
	height: calc(100vh - 100px);
	min-height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 25px;
	background: var(--surface);
	border: 0;
	border-radius: 15px;
	box-shadow: var(--shadow);
	overflow-y: auto;
	z-index: 20;
}

.ttm-accessflow-dashboard .brand {
	display: block;
	margin-bottom: 30px;
	color: var(--text);
	font-family: var(--special-element-fontfamily), var(--body-font-family), sans-serif;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
}

/* Hidden on desktop; shown inside the @media (max-width: 900px) block */
.ttm-accessflow-dashboard .side-close {
	display: none;
}

.ttm-accessflow-dashboard .side nav {
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex: 1;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ttm-accessflow-dashboard .side nav a {
	display: block;
	padding: 13px 18px;
	border-radius: 10px;
	color: var(--ttm-secondarycolor);
	text-decoration: none;
	font-weight: var(--special-element-fontweight);
	transition: background 0.2s ease, color 0.2s ease;
}
.ttm-accessflow-dashboard .side nav a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
}

#home-launch-footer a{
	color: var(--text);
}	
#home-launch-footer a:hover{
	color: var(--accent);
}
.ttm-accessflow-dashboard .side nav a svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ttm-accessflow-dashboard .side nav a:hover,
.ttm-accessflow-dashboard .side nav a.active {
	background: var(--accent-soft);
	color: var(--ttm-secondarycolor);
}

.ttm-accessflow-dashboard .side footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 16px;
}

.ttm-accessflow-dashboard .main {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin-left: 320px;
	background: transparent;
	gap: 30px;
}

.ttm-accessflow-dashboard .main > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 20px;
	background: var(--surface);
	border: 0;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.ttm-accessflow-dashboard .crumb {
	margin: 0;
	font-family: var(--special-element-fontfamily), var(--body-font-family), sans-serif;
	font-size: 22px;
	font-weight: 500;
	color: var(--text);
	flex: 1;
}

.ttm-accessflow-dashboard #ttm-af-content {
	flex: 1;
	padding: 0;
	overflow: visible;
}

.ttm-accessflow-dashboard .page {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ttm-accessflow-dashboard .page-title,
.ttm-accessflow-dashboard .hero {
	gap: 20px;
    background: var(--surface);
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 20px;			
}

.ttm-accessflow-dashboard h1,
.ttm-accessflow-dashboard h2,
.ttm-accessflow-dashboard h3,
.ttm-accessflow-dashboard h4 {
	color: var(--text);
	font-family: var(--special-element-fontfamily), var(--body-font-family), sans-serif;
	    font-size: 22px;
}
.ttm-accessflow-dashboard h1 {
    font-size: 26px;
}
.ttm-accessflow-dashboard .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0;
}

.ttm-accessflow-dashboard .muted {
	color: var(--muted);
}

/*------------------------------------------------------------------------
 Notification icon
--------------------------------------------------------------------------*/
.ttm-accessflow-dashboard #ttm-af-notifications{
	position: relative;
}

.ttm-accessflow-dashboard #ttm-af-notifications .ttm-af-notif-count{
	position: absolute;
    right: -10px;
    top: -8px;
    background: var(--accent);
    color: var(--ttm-secondarycolor);
    padding: 3px 8px;
    border-radius: 14px;
    font-size: 12px;
}

/* -------------------------------------------------------------------------
   Cards / panels / stats — match .ttm-card
--------------------------------------------------------------------------- */
.ttm-accessflow-dashboard .panel,
.ttm-accessflow-dashboard .stats > article,
.ttm-accessflow-dashboard .site,
.ttm-accessflow-dashboard .invoice,
.ttm-accessflow-dashboard .issue-card,
.ttm-accessflow-dashboard .plan-card {
	background: var(--surface);
	border: 0;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 30px;
}

.ttm-accessflow-dashboard .stats {
	gap: 20px;
}

.ttm-accessflow-dashboard .grid,
.ttm-accessflow-dashboard .plan-grid {
	gap: 20px;
}

.ttm-accessflow-dashboard .list,
.ttm-accessflow-dashboard .sites {
	gap: 16px;
}

.ttm-accessflow-dashboard .site,
.ttm-accessflow-dashboard .invoice,
.ttm-accessflow-dashboard .issue-card {
	padding: 20px 24px;
	margin-bottom: 20px;
}

/* -------------------------------------------------------------------------
   Forms — match Store dashboard field styling
--------------------------------------------------------------------------- */
.ttm-accessflow-dashboard .form,
.ttm-accessflow-dashboard label {
	gap: 8px;
	margin-bottom: 16px;
	font-weight: var(--special-element-fontweight);
	color: var(--text);
}  
.ttm-accessflow-dashboard #settings-form{
   display: flex;
   /* align-items: center; */
   justify-content: space-between;
   gap: 12px;
   padding: 20px;
   background: var(--surface);
   border: 0;
   border-radius: 15px;
   box-shadow: var(--shadow);
}

.ttm-accessflow-dashboard input,
.ttm-accessflow-dashboard select,
.ttm-accessflow-dashboard textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 15px;
	border: 2px solid var(--border);
	border-radius: 50px;
	background: var(--bg);
	color: var(--text);
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	box-shadow: none;
	    background: #ffffff;
}
.ttm-accessflow-dashboard select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    color: var(--ttm-secondarycolor);
}

.ttm-accessflow-dashboard textarea {
	min-height: 120px;
	background: transparent;
	border-radius: 10px;
	color: var(--body-fonts-color);
}

.ttm-accessflow-dashboard input:focus,
.ttm-accessflow-dashboard select:focus,
.ttm-accessflow-dashboard textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: unset;
	background-color: var(--ttm-whitecolor) !important;
}

.ttm-accessflow-dashboard input::placeholder,
.ttm-accessflow-dashboard textarea::placeholder {
	color: var(--muted);
}

/* -------------------------------------------------------------------------
   Buttons — match .ttm-dashboard-btn / Store button tokens
--------------------------------------------------------------------------- */
.ttm-accessflow-dashboard button,
.ttm-accessflow-dashboard .primary,
.ttm-accessflow-dashboard .secondary,
.ttm-accessflow-dashboard .ghost,
.ttm-accessflow-dashboard .danger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: var(--button-topbottom-padding) 22px;
	border-radius: var(--ttm-button-shape);
	border: 2px solid transparent;
	font-family: var(--button-font-family), var(--body-font-family), sans-serif;
	font-size: var(--button_fontsize);
	font-weight: var(--button-font-weight);
	text-transform: var(--button-text-transform);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	line-height: var(--button_fontsize);
}

/* Author styles above use inline-flex, which otherwise overrides the browser's
   native [hidden] rule and leaves inactive controls visible but unclickable. */
.ttm-accessflow-dashboard button[hidden] {
	display: none !important;
}

.ttm-accessflow-dashboard .billing-plans-panel .billing-plan-tools {
	margin: 20px 0 24px;
}

.ttm-accessflow-dashboard .billing-current-panel .billing-current-plan-cancel {
	margin-top: 16px;
}

.ttm-accessflow-dashboard .primary {
	background: var(--accent);
	color: var(--ttm-secondarycolor);
	border-color: var(--accent);
}

.ttm-accessflow-dashboard .primary:hover {
    background: var(--btn-hover);
    border-color: var(--btn-hover);
    color: var(--ttm-blackishcolor);
}
.trial-banner-copy p {
    margin: 0;
}
.ttm-accessflow-dashboard .secondary,
.ttm-accessflow-dashboard .ghost {
	background: var(--surface);
	border-color: var(--border);
	color: var(--text);
}

.ttm-accessflow-dashboard .secondary:hover,
.ttm-accessflow-dashboard .ghost:hover {
	background: var(--accent-soft);
	border-color: var(--accent-soft);
	color: var(--ttm-secondarycolor);
}

.ttm-accessflow-dashboard .danger {
	background: var(--light-redcolor);
	color: var(--danger);
	border-color: transparent;
}

.ttm-accessflow-dashboard .danger:hover {
	background: var(--danger);
	color: var(--ttm-whitecolor);
}

.ttm-accessflow-dashboard .icon,
.ttm-accessflow-dashboard .avatar {
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border-radius: 50%;
	border: 2px solid var(--border);
	background: var(--surface);
	color: var(--text);
	box-shadow: none;
}

.ttm-accessflow-dashboard .side footer .ghost {
	justify-content: flex-start;
	min-height: 44px;
	padding: 12px 18px;
	border-radius: 10px;
}

/* -------------------------------------------------------------------------
   Notices / badges — Store semantic colors
--------------------------------------------------------------------------- */
.ttm-accessflow-dashboard .webflow-notice,
.ttm-accessflow-dashboard .disclaimer,
.ttm-accessflow-dashboard .pro-trial-banner,
.ttm-accessflow-dashboard .pro-upgrade-banner,
.ttm-accessflow-dashboard .billing-checkout-notice {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
	background: var(--surface);
	display: flex;
    flex-direction: column;
    gap: 5px;
}
.ttm-accessflow-dashboard .disclaimer p {
    margin: 0;
}

ol.onboarding-steps li.onboarding-step {
    margin-bottom: 10px;
    list-style: none;
        list-style: none;
    display: flex;
    flex-wrap: wrap;
}
#onboarding-wizard span.onboarding-index {
    margin-right: 5px;
}
.ttm-accessflow-dashboard .webflow-notice-success,
.ttm-accessflow-dashboard .billing-checkout-notice.is-success {
	background: var(--light-greencolor);
	border-color: var(--dark-greencolor);
	color: var(--dark-greencolor);
}

.ttm-accessflow-dashboard .webflow-notice-error,
.ttm-accessflow-dashboard .billing-checkout-notice.is-error {
	background: var(--light-redcolor);
	border-color: var(--dark-redcolor);
	color: var(--dark-redcolor);
	box-shadow: unset;
}

.ttm-accessflow-dashboard .status {
	color: var(--accent);
}

.ttm-accessflow-dashboard .badge,
.ttm-accessflow-dashboard .grade-badge,
.ttm-accessflow-dashboard .trend-badge,
.ttm-accessflow-dashboard .trial-badge,
.ttm-accessflow-dashboard .plan-current-badge {
	border-radius: var(--ttm-button-shape);
	font-family: var(--body-font-family), sans-serif;
}

/* -------------------------------------------------------------------------
   Auth screen — same tokens / card language
--------------------------------------------------------------------------- */
.ttm-accessflow-auth {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 100px);
	padding: 20px 0;
}

.ttm-accessflow-auth .auth-shell {
	width: min(920px, 100%);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 30px;
	align-items: stretch;
}

.ttm-accessflow-auth .auth-brand,
.ttm-accessflow-auth .auth-card {
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 30px;
}

.ttm-accessflow-auth .auth-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--accent-soft);
	color: var(--ttm-secondarycolor);
	font-size: 22px;
}

.ttm-accessflow-auth .auth-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	padding: 6px;
	background: var(--bg);
	border-radius: var(--ttm-button-shape);
}

.ttm-accessflow-auth .auth-tab {
	flex: 1;
	min-height: 44px;
	border: 0;
	border-radius: var(--ttm-button-shape);
	background: transparent;
	color: var(--muted);
	font-family: var(--button-font-family), var(--body-font-family), sans-serif;
	font-weight: var(--button-font-weight);
}

.ttm-accessflow-auth .auth-tab.active {
	background: var(--surface);
	color: var(--text);
	box-shadow: var(--shadow);
}

.ttm-accessflow-auth .auth-alert {
	border-radius: 10px;
	padding: 12px 14px;
	margin-bottom: 16px;
}

.ttm-accessflow-auth .auth-alert.is-error {
	background: var(--light-redcolor);
	color: var(--dark-redcolor);
}

.ttm-accessflow-auth .auth-alert.is-success {
	background: var(--light-greencolor);
	color: var(--dark-greencolor);
}

.ttm-accessflow-auth .auth-submit {
	width: 100%;
	margin-top: 8px;
}

/* -------------------------------------------------------------------------
   Toolbar settings / misc controls still use shared tokens
--------------------------------------------------------------------------- */
.ttm-accessflow-dashboard .toolbar-position-btn {
	border: 1px solid var(--border);
	background: var(--surface);
	border-radius: 10px;
	color: var(--text);
}

.ttm-accessflow-dashboard .toolbar-position-btn.is-active {
	border-color: var(--accent);
	background: var(--accent);
	box-shadow: none;
}
.ttm-accessflow-dashboard #toolbar-embed-feature-list .toolbar-feature {
    flex-direction: row;
}
.ttm-accessflow-dashboard .toolbar-feature {
	border-color: var(--border);
	background: var(--surface);
}

/* -------------------------------------------------------------------------
   Responsive — align with Store dashboard breakpoints
--------------------------------------------------------------------------- */
@media (max-width: 1199px) {
	.ttm-accessflow-dashboard {
		padding: 30px;
	}

	.ttm-accessflow-dashboard .side {
		width: 250px;
		left: 30px;
		top: 30px;
		height: calc(100vh - 60px);
		min-height: calc(100vh - 60px);
	}

	.ttm-accessflow-dashboard .main {
		margin-left: 280px;
	}
}

@media (max-width: 991px) {
	.ttm-accessflow-dashboard {
		padding: 20px;
	}

	.ttm-accessflow-dashboard .side {
		top: 20px;
		left: 20px;
		height: calc(100vh - 40px);
		min-height: calc(100vh - 40px);
	}

	.ttm-accessflow-dashboard .main > header {
		padding: 18px;
	}

	.ttm-accessflow-dashboard .crumb {
		font-size: 20px;
	}

	.ttm-accessflow-dashboard .panel,
	.ttm-accessflow-dashboard .stats > article {
		padding: 20px;
	}

	.ttm-accessflow-auth .auth-shell {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.ttm-accessflow-dashboard .side {
		display: none;
		position: fixed;
		inset: 20px auto 20px 20px;
		width: min(288px, 88vw);
		height: auto;
		min-height: 0;
		max-height: calc(100vh - 40px);
		z-index: 1000;
	}

	.ttm-accessflow-dashboard .side.open {
		display: flex;
		animation: ttm-slide-in 0.2s ease;
	}

	@keyframes ttm-slide-in {
		from { opacity: 0; transform: translateX(-12px); }
		to   { opacity: 1; transform: translateX(0); }
	}

	/* Close button — only visible on mobile */
	.ttm-accessflow-dashboard .side-close {
		display: flex;
		align-items: center;
		justify-content: center;
		align-self: flex-end;
		width: 32px;
		height: 32px;
		margin-bottom: 8px;
		padding: 0;
		background: transparent;
		border: none;
		border-radius: 8px;
		cursor: pointer;
		color: var(--text);
		font-size: 20px;
		line-height: 1;
		transition: background 0.15s ease;
	}

	.ttm-accessflow-dashboard .side-close:hover {
		background: var(--accent-soft);
	}

	.ttm-accessflow-dashboard .main {
		margin-left: 0;
	}

	.ttm-accessflow-dashboard .mobile-menu {
		display: inline-flex;
	}
}

@media (max-width: 767px) {
	.ttm-accessflow-dashboard {
		padding: 15px;
	}

	.ttm-accessflow-dashboard .main > header {
		padding: 15px;
		border-radius: 12px;
	}

	.ttm-accessflow-dashboard .page {
		gap: 20px;
	}

	.ttm-accessflow-dashboard .panel,
	.ttm-accessflow-dashboard .stats > article,
	.ttm-accessflow-dashboard .site,
	.ttm-accessflow-dashboard .invoice,
	.ttm-accessflow-dashboard .issue-card {
		padding: 16px;
		border-radius: 12px;
	}

	.ttm-accessflow-dashboard button,
	.ttm-accessflow-dashboard .primary,
	.ttm-accessflow-dashboard .secondary,
	.ttm-accessflow-dashboard .ghost,
	.ttm-accessflow-dashboard .danger {
		width: auto;
		min-height: 44px;
		padding: 12px 18px;
	}
}

/* Admin bar offset */
@media (min-width: 901px) {
	body.admin-bar .ttm-accessflow-dashboard .side {
		top: calc(50px + 32px);
		height: calc(100vh - 100px - 32px);
		min-height: calc(100vh - 100px - 32px);
	}
}

@media (min-width: 901px) and (max-width: 1199px) {
	body.admin-bar .ttm-accessflow-dashboard .side {
		top: calc(30px + 32px);
		height: calc(100vh - 60px - 32px);
		min-height: calc(100vh - 60px - 32px);
	}
}
.ttm-accessflow-dashboard .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
    color: var(--ttm-secondarycolor);
}
.ttm-accessflow-dashboard .select2-container--default .select2-selection--single {
    border-radius: 50px;
    height: 52px;
    background: #ffffff;
}
.ttm-accessflow-dashboard .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .ttm-accessflow-dashboard .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 10px;
}

.ttm-accessflow-dashboard #portal-issues,
.ttm-accessflow-dashboard .portal-issue-list {
	display: grid;
	gap: 16px;
	background: transparent;
	box-shadow: none;
	padding: 0;
	min-height: 0;
}

.ttm-accessflow-dashboard #portal-issues > .empty,
.ttm-accessflow-dashboard .portal-issue-list > .empty {
	display: block;
	margin: 0;
	padding: 20px 24px;
	background: var(--surface);
	border-radius: 15px;
	box-shadow: var(--shadow);
	color: var(--muted);
}

.ttm-accessflow-dashboard .issue-assignee {
	margin: 0 0 8px;
}
.ttm-accessflow-dashboard form#branding-form input {
    margin-top: 8px;
}
.ttm-accessflow-dashboard form#branding-form input[type="color"] {
    border: 0;
    width: 20px;
    padding: 0;
    border-radius: 50%;
    min-height: 20px;
    margin: 0 0 0 10px;
    height: 24px;
}
.ttm-accessflow-dashboard fieldset legend {
    color: var(--ttm-secondarycolor);
    width: auto;
    padding: 0 10px;
    font-size: 18px;
    margin-bottom: 5px;
}
div#privacy-settings-host h3 {
    font-size: 20px;
}
.ttm-accessflow-dashboard .ttm-modal-layer.open button[data-action='close-modal'].ghost {
    padding: 0;
    width: 35px;
    height: 34px;
    min-height: auto;
    font-size: 20px;
}
.ttm-accessflow-dashboard .ttm-modal-layer.open div#issue-results .panel.issue-card {
    overflow: visible;
    margin: 0 8px 15px;
}
.ttm-accessflow-dashboard div#scan-history article.site.scan-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}
