@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
	--blocdash-font-family: "IBM Plex Sans", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
	--blocdash-font-family-display: "IBM Plex Sans", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;

	--blocdash-bg-canvas: #f4f4f4;
	--blocdash-bg-surface: #ffffff;
	--blocdash-bg-surface-subtle: #f6f6f6;
	--blocdash-bg-surface-elevated: #ffffff;

	--blocdash-text-primary: #111111;
	--blocdash-text-secondary: #666666;
	--blocdash-text-tertiary: #888888;

	--blocdash-border-subtle: #e2e2e2;
	--blocdash-border-strong: #d6d6d6;
	--blocdash-border-focus: #111111;

	--blocdash-accent-color: #111111;
	--blocdash-accent-hover: #000000;
	--blocdash-accent-text: #ffffff;

	--blocdash-success: #111111;
	--blocdash-danger: #333333;
	--blocdash-info: #555555;

	--blocdash-shadow-sm: 0 6px 16px rgba(15, 15, 15, 0.08);
	--blocdash-shadow-md: 0 10px 24px rgba(15, 15, 15, 0.08);
	--blocdash-shadow-lg: 0 18px 36px rgba(15, 15, 15, 0.12);

	--blocdash-radius-xs: 6px;
	--blocdash-radius-sm: 10px;
	--blocdash-radius-md: 14px;
	--blocdash-radius-lg: 16px;
	--blocdash-radius-xl: 20px;

	--blocdash-btn-radius: 10px;
	--blocdash-card-radius: var(--blocdash-radius-lg);
	--blocdash-card-bg-color: var(--blocdash-bg-surface);
	--blocdash-border-color: var(--blocdash-border-subtle);
	--blocdash-text-primary-color: var(--blocdash-text-primary);
	--blocdash-text-secondary-color: var(--blocdash-text-secondary);
	--blocdash-shadow-color: rgba(15, 15, 15, 0.08);
	--blocdash-surface-gradient: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
	--blocdash-transition-speed: 0.2s;

	--blocdash-space-1: 0.5rem;
	--blocdash-space-2: 0.75rem;
	--blocdash-space-3: 1rem;
	--blocdash-space-4: 1.5rem;
	--blocdash-space-5: 2rem;
	--blocdash-space-6: 2.5rem;

	--blocdash-focus-ring: rgba(17, 17, 17, 0.2);
	--blocdash-app-gradient: none;

	--blocdash-shell-max: 1280px;
	--blocdash-content-max: 1200px;
	--blocdash-content-narrow: 720px;
	--blocdash-app-margin: clamp(1.5rem, 3vw, 3rem);
	--blocdash-app-padding: clamp(1.25rem, 2.5vw, 3rem);
	--blocdash-section-gap: var(--blocdash-space-4);
	--blocdash-card-padding: 1.5rem;
	--blocdash-card-padding-header: 1.25rem 1.5rem;
	--blocdash-card-padding-compact: 0.85rem;
	--blocdash-panel-padding: var(--blocdash-space-5);
}

body.blocdash-modal-open {
	overflow: hidden;
}

.blocdash-app,
.blocdash-app * {
	box-sizing: border-box;
}

.blocdash-app {
	--blocdash-bg-canvas: #f4f4f4 !important;
	--blocdash-bg-surface: #ffffff !important;
	--blocdash-bg-surface-subtle: #f6f6f6 !important;
	--blocdash-bg-surface-elevated: #ffffff !important;
	--blocdash-text-primary: #111111 !important;
	--blocdash-text-secondary: #666666 !important;
	--blocdash-text-tertiary: #888888 !important;
	--blocdash-border-subtle: #e2e2e2 !important;
	--blocdash-border-strong: #d6d6d6 !important;
	--blocdash-border-focus: #111111 !important;
	--blocdash-accent-color: #111111 !important;
	--blocdash-accent-hover: #000000 !important;
	--blocdash-accent-text: #ffffff !important;
	--blocdash-shadow-sm: 0 6px 16px rgba(15, 15, 15, 0.08) !important;
	--blocdash-shadow-md: 0 10px 24px rgba(15, 15, 15, 0.08) !important;
	--blocdash-shadow-lg: 0 18px 36px rgba(15, 15, 15, 0.12) !important;
	--blocdash-btn-radius: 10px !important;
	--blocdash-card-radius: var(--blocdash-radius-lg) !important;
	--blocdash-focus-ring: rgba(17, 17, 17, 0.2) !important;
	font-family: var(--blocdash-font-family);
	color: var(--blocdash-text-primary);
	background: var(--blocdash-bg-canvas);
	position: relative;
	isolation: isolate;
	margin: var(--blocdash-app-margin) auto;
	padding: var(--blocdash-app-padding);
	max-width: var(--blocdash-shell-max);
	width: 100%;
	border-radius: var(--blocdash-radius-xl);
	border: 1px solid var(--blocdash-border-subtle);
	box-shadow: var(--blocdash-shadow-md);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.blocdash-app::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--blocdash-app-gradient);
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.blocdash-app > * {
	position: relative;
	z-index: 1;
}

.blocdash-dashboard-wrapper,
.blocdash-directory-wrapper,
.blocdash-profile-wrapper,
.blocdash-points-wrapper,
.blocdash-notifications-wrapper {
	width: min(100%, var(--blocdash-content-max));
	margin-left: auto;
	margin-right: auto;
}

.blocdash-module-stack {
	width: 100%;
	max-width: var(--blocdash-content-max);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	gap: var(--blocdash-section-gap);
}

.blocdash-level-widget-wrapper {
	max-width: var(--blocdash-content-narrow);
	width: 100%;
}

.blocdash-social-login-wrapper {
	max-width: var(--blocdash-content-narrow);
	width: 100%;
}

.blocdash-card {
	padding: 0;
	border-radius: var(--blocdash-card-radius);
	background: #fafafa;
	border: 1px solid var(--blocdash-border-subtle);
	box-shadow: var(--blocdash-shadow-sm);
	color: var(--blocdash-text-primary);
	transition: all 0.3s ease;
	overflow: hidden;
	height: 100%;
}

.blocdash-card:hover {
	box-shadow: var(--blocdash-shadow-md);
}

.blocdash-card > h3 {
	font-size: 1.15rem;
	margin: 0;
	padding: var(--blocdash-card-padding);
	border-bottom: 1px solid var(--blocdash-border-subtle);
	color: var(--blocdash-text-primary);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
	background: var(--blocdash-bg-surface-subtle);
}

.blocdash-card-header h3 {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}

.blocdash-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: var(--blocdash-card-padding-header);
	border-bottom: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
}

.blocdash-card-title-group {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
}

.blocdash-card-title-stack {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.blocdash-card-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--blocdash-text-primary);
	margin: 0;
}

.blocdash-card-meta {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--blocdash-text-tertiary);
	text-transform: none;
	letter-spacing: 0.02em;
	flex-wrap: wrap;
}

.blocdash-card-meta.is-caps {
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.blocdash-meta-dot {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: var(--blocdash-border-strong);
	display: inline-flex;
}

.blocdash-card-body {
	padding: var(--blocdash-card-padding);
}

.blocdash-card-footer {
	padding: var(--blocdash-card-padding-compact) var(--blocdash-card-padding);
	border-top: 1px solid var(--blocdash-border-subtle);
	background: var(--blocdash-bg-surface-subtle);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.blocdash-app h1,
.blocdash-app h2,
.blocdash-app h3,
.blocdash-app h4 {
	font-family: var(--blocdash-font-family-display);
}

.blocdash-app a {
	color: var(--blocdash-text-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blocdash-app a:hover {
	color: var(--blocdash-accent-color);
}

.blocdash-app button,
.blocdash-app input,
.blocdash-app textarea,
.blocdash-app select {
	font-family: inherit;
}

.blocdash-dashboard-wrapper.blocdash-density-compact {
	--blocdash-space-1: 0.35rem;
	--blocdash-space-2: 0.5rem;
	--blocdash-space-3: 0.75rem;
	--blocdash-space-4: 1rem;
	--blocdash-space-5: 1.25rem;
	--blocdash-space-6: 1.5rem;
}

.blocdash-header {
	display: flex;
	flex-direction: column;
	gap: var(--blocdash-space-4);
	padding: var(--blocdash-panel-padding);
	background: var(--blocdash-bg-surface);
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-xl);
	box-shadow: var(--blocdash-shadow-md);
	margin-bottom: var(--blocdash-space-5);
}

.blocdash-header-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--blocdash-space-3);
}

.blocdash-header-left,
.blocdash-header-right {
	display: flex;
	align-items: center;
	gap: var(--blocdash-space-3);
}

.blocdash-avatar img,
.blocdash-avatar-img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--blocdash-border-subtle);
	box-shadow: var(--blocdash-shadow-sm);
	display: block;
}

.blocdash-app img.avatar {
	border-radius: 50% !important;
	object-fit: cover;
}

.blocdash-welcome h2 {
	margin: 0;
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--blocdash-text-primary);
}

.blocdash-welcome .blocdash-greeting {
	font-size: 0.95rem;
	color: var(--blocdash-text-secondary);
	margin-top: 0.25rem;
}

.blocdash-level-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	background: var(--blocdash-bg-surface-subtle);
	color: var(--blocdash-text-secondary);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.blocdash-level-meta {
\tdisplay: flex;
\talign-items: center;
\tgap: 0.5rem;
\tmargin-top: 0.25rem;
}

.blocdash-divider-dot {
\tcolor: var(--blocdash-text-tertiary);
\tfont-size: 0.75rem;
}

.blocdash-progress-track {
	width: 100%;
	max-width: 220px;
	height: 0.5rem;
	background: var(--blocdash-bg-surface-subtle);
	border-radius: 999px;
	overflow: hidden;
	margin-top: 0.5rem;
}

.blocdash-progress-fill {
	height: 100%;
	background: var(--blocdash-accent-color);
	border-radius: inherit;
}

.blocdash-notification-bell {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	color: var(--blocdash-text-tertiary);
	transition: color 0.2s ease;
	position: relative;
}

.blocdash-notification-bell:hover {
	color: var(--blocdash-text-primary);
}

.blocdash-notification-dot {
\tposition: absolute;
\ttop: 2px;
\tright: 2px;
\twidth: 10px;
\theight: 10px;
\tborder-radius: 999px;
\tbackground: var(--blocdash-info);
\tborder: 2px solid #ffffff;
}

.blocdash-logout-link {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1.2rem;
	border-radius: var(--blocdash-btn-radius);
	background: var(--blocdash-bg-surface-subtle);
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--blocdash-text-secondary);
	transition: all 0.2s ease;
}

.blocdash-logout-link:hover {
	background: var(--blocdash-border-subtle);
	color: var(--blocdash-text-primary);
}

.blocdash-quick-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--blocdash-space-2);
	padding-top: var(--blocdash-space-3);
	border-top: 1px solid var(--blocdash-border-subtle);
}

.blocdash-quick-action {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: var(--blocdash-bg-surface-subtle);
	border: 1px solid var(--blocdash-border-subtle);
	color: var(--blocdash-text-primary);
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.blocdash-quick-action:hover {
	background: #ffffff;
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-quick-action-icon svg {
	width: 14px;
	height: 14px;
}

.blocdash-tabs-wrap {
	position: sticky;
	top: 0.75rem;
	z-index: 30;
	background: var(--blocdash-bg-canvas);
	padding: 0.35rem;
	border-radius: var(--blocdash-radius-xl);
	border: 1px solid var(--blocdash-border-subtle);
	box-shadow: var(--blocdash-shadow-sm);
	margin-bottom: var(--blocdash-space-4);
	overflow: hidden;
}

.blocdash-tabs-wrap::before,
.blocdash-tabs-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 24px;
	pointer-events: none;
}

.blocdash-tabs-wrap::before {
	left: 0;
	background: linear-gradient(90deg, var(--blocdash-bg-canvas), rgba(244, 244, 244, 0));
}

.blocdash-tabs-wrap::after {
	right: 0;
	background: linear-gradient(270deg, var(--blocdash-bg-canvas), rgba(244, 244, 244, 0));
}

.blocdash-tabs-nav {
	display: flex;
	gap: var(--blocdash-space-2);
	list-style: none;
	margin: 0;
	padding: 0.25rem;
	overflow-x: auto;
	scrollbar-width: none;
}

.blocdash-tabs-nav::-webkit-scrollbar {
	display: none;
}

.blocdash-tabs-nav li {
	margin: 0;
	flex-shrink: 0;
}

.blocdash-tabs-nav li a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--blocdash-text-secondary);
	transition: all 0.2s ease;
}

.blocdash-tabs-nav li.active a,
.blocdash-tabs-nav li a:hover {
	background: #ffffff;
	color: var(--blocdash-text-primary);
	box-shadow: var(--blocdash-shadow-sm);
	border-color: var(--blocdash-border-subtle);
}

.blocdash-button,
.blocdash-form-submit,
.blocdash-button-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 1.6rem;
	border-radius: var(--blocdash-btn-radius);
	border: 1px solid var(--blocdash-accent-color);
	background: var(--blocdash-accent-color);
	color: var(--blocdash-accent-text);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-button:hover,
.blocdash-form-submit:hover,
.blocdash-button-primary:hover {
	background: var(--blocdash-accent-hover);
	transform: translateY(-1px);
	box-shadow: var(--blocdash-shadow-md);
}

.blocdash-button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.4rem;
	border-radius: var(--blocdash-btn-radius);
	border: 1px solid var(--blocdash-border-strong);
	background: #ffffff;
	color: var(--blocdash-text-secondary);
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.blocdash-button-secondary:hover {
	border-color: var(--blocdash-border-focus);
	color: var(--blocdash-text-primary);
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-app a.blocdash-button,
.blocdash-app a.blocdash-button-primary,
.blocdash-app a.blocdash-form-submit {
	color: var(--blocdash-accent-text);
}

.blocdash-app a.blocdash-button:hover,
.blocdash-app a.blocdash-button-primary:hover,
.blocdash-app a.blocdash-form-submit:hover {
	color: var(--blocdash-accent-text);
}

.blocdash-app a.blocdash-button-secondary {
	color: var(--blocdash-text-secondary);
}

.blocdash-app a.blocdash-button-secondary:hover {
	color: var(--blocdash-text-primary);
}

.blocdash-button-sm {
	padding: 0.55rem 1.1rem;
	font-size: 0.85rem;
}

.blocdash-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--blocdash-border-subtle);
	background: #ffffff;
	color: var(--blocdash-text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
}

.blocdash-icon-button:hover {
	color: var(--blocdash-text-primary);
	border-color: var(--blocdash-border-strong);
	box-shadow: var(--blocdash-shadow-sm);
}

.blocdash-social-login-card .blocdash-social-login-group {
	padding: var(--blocdash-space-4);
	display: flex;
	flex-direction: column;
	gap: 0;
}

.blocdash-social-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.85rem;
	padding: 0.9rem 1.25rem;
	min-height: 52px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	background: var(--blocdash-social-bg, #ffffff);
	color: var(--blocdash-social-text, var(--blocdash-text-primary)) !important;
	border: 1px solid var(--blocdash-social-border, var(--blocdash-border-subtle));
	box-shadow: 0 10px 24px rgba(0,0,0,0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	margin: 5px 0;
}

.blocdash-social-btn:hover {
	opacity: 0.96;
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(0,0,0,0.18);
}

.blocdash-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.22);
	color: inherit;
	flex-shrink: 0;
}

.blocdash-social-icon svg {
	width: 20px;
	height: 20px;
}

.blocdash-social-login-group-flat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
}

.blocdash-social-login-group-flat .blocdash-social-btn {
	width: 100%;
	max-width: 320px;
	min-height: 40px;
	padding: 0.6rem 0.9rem;
	font-size: 0.88rem;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.blocdash-social-login-group-flat .blocdash-social-icon {
	width: 30px;
	height: 30px;
}

.blocdash-social-login-group-flat .blocdash-social-icon svg {
	width: 18px;
	height: 18px;
}

.blocdash-social-logo {
	width: 22px;
	height: 22px;
	display: block;
	object-fit: contain;
}

.blocdash-social-btn .blocdash-social-label {
	color: var(--blocdash-social-text, var(--blocdash-text-primary)) !important;
}

.blocdash-social-google .blocdash-social-icon {
	background: #f6f7f8;
	border-color: #e6e8eb;
}

.blocdash-social-facebook .blocdash-social-icon {
	background: #ffffff;
	border-color: rgba(255,255,255,0.9);
	color: #1877F2;
}

.blocdash-social-twitter .blocdash-social-icon {
	background: #ffffff;
	border-color: rgba(255,255,255,0.9);
	color: #111111;
}

.blocdash-social-wordpress .blocdash-social-icon {
	background: #1d2327;
	border-color: #1d2327;
	color: #ffffff;
}

.blocdash-social-letter {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
}

.blocdash-social-login-empty {
	text-align: center;
	color: var(--blocdash-text-secondary);
}

.blocdash-app input[type="text"],
.blocdash-app input[type="email"],
.blocdash-app input[type="password"],
.blocdash-app input[type="search"],
.blocdash-app input[type="url"],
.blocdash-app input[type="number"],
.blocdash-app textarea,
.blocdash-app select,
.blocdash-input {
	width: 100%;
	padding: 0.85rem 1.1rem;
	border-radius: var(--blocdash-radius-md);
	border: 1px solid var(--blocdash-border-subtle);
	background: #ffffff;
	font-size: 1rem;
	color: var(--blocdash-text-primary);
	transition: all 0.2s ease;
}

.blocdash-app textarea {
	min-height: 140px;
	resize: vertical;
}

.blocdash-app input:focus,
.blocdash-app textarea:focus,
.blocdash-app select:focus,
.blocdash-input:focus {
	outline: none;
	border-color: var(--blocdash-border-focus);
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.blocdash-toast-container {
	position: fixed;
	top: 1.25rem;
	right: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 9999;
}

.blocdash-toast {
	background: #ffffff;
	border: 1px solid var(--blocdash-border-subtle);
	border-radius: var(--blocdash-radius-md);
	box-shadow: var(--blocdash-shadow-md);
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 220px;
	transform: translateY(-6px);
	opacity: 0;
	transition: all 0.2s ease;
}

.blocdash-toast.show {
	opacity: 1;
	transform: translateY(0);
}

.blocdash-toast.is-success {
	border-color: var(--blocdash-border-strong);
}

.blocdash-toast.is-error {
	border-color: var(--blocdash-border-strong);
}

.blocdash-toast-message {
	flex: 1;
	font-size: 0.85rem;
	color: var(--blocdash-text-primary);
}

.blocdash-toast-close {
	background: transparent;
	border: none;
	color: var(--blocdash-text-tertiary);
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
	padding: 0;
}

.blocdash-app a:focus-visible,
.blocdash-app button:focus-visible,
.blocdash-app [role="button"]:focus-visible,
.blocdash-app input:focus-visible,
.blocdash-app textarea:focus-visible,
.blocdash-app select:focus-visible {
	outline: 3px solid var(--blocdash-focus-ring);
	outline-offset: 2px;
}

@media (max-width: 900px) {
	.blocdash-header {
		padding: var(--blocdash-panel-padding);
	}

	.blocdash-header-main {
		flex-direction: column;
		align-items: flex-start;
	}
	.blocdash-app {
		--blocdash-card-padding: 1.25rem;
		--blocdash-card-padding-header: 1.1rem 1.25rem;
		--blocdash-card-padding-compact: 0.8rem;
		--blocdash-section-gap: 1.25rem;
		--blocdash-panel-padding: 1.5rem;
	}
}

@media (max-width: 640px) {
	.blocdash-app {
		margin: 0;
		border-radius: 0;
		max-width: none;
	}

	.blocdash-quick-action-label {
		display: none;
	}

	.blocdash-tabs-wrap {
		top: 0.5rem;
	}
	.blocdash-app {
		--blocdash-card-padding: 1.1rem;
		--blocdash-card-padding-header: 1rem 1.1rem;
		--blocdash-card-padding-compact: 0.75rem;
		--blocdash-section-gap: 1rem;
		--blocdash-panel-padding: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
