/* ==========================================================================
   DeckCMS Connect — Member Directory Frontend Styles
   ==========================================================================
   Visual defaults use :where() for zero specificity so that Elementor
   style-tab controls always override them regardless of CSS load order
   or theme interference.  Layout properties (display, flex, gap, margin,
   position, etc.) remain on regular selectors.
   ========================================================================== */

/* --- Wrapper --- */

.deckcms-member-directory {
	position: relative;
}

/* --- Toolbar (search + offers toggle) --- */

.deckcms-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 20px;
}

.deckcms-search {
	flex: 1;
	min-width: 200px;
}

.deckcms-search__input {
	width: 100%;
	padding: 10px 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

:where(.deckcms-search__input) {
	font-size: 15px;
	line-height: 1.5;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
}

.deckcms-search__input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.deckcms-search__input::placeholder {
	color: #9ca3af;
}

/* --- Offers Toggle --- */

.deckcms-offers-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	color: #374151;
	white-space: nowrap;
	user-select: none;
}

.deckcms-offers-toggle__input {
	width: 18px;
	height: 18px;
	accent-color: #2563eb;
}

/* --- Tag Filters --- */

.deckcms-tag-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.deckcms-tag-filter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: #374151;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.deckcms-tag-filter:hover {
	background: #e5e7eb;
}

.deckcms-tag-filter--active {
	background: #2563eb;
	color: #fff;
	border-color: #2563eb;
}

.deckcms-tag-filter--active:hover {
	background: #1d4ed8;
	border-color: #1d4ed8;
}

.deckcms-tag-filter__count {
	font-size: 11px;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.08);
}

.deckcms-tag-filter--active .deckcms-tag-filter__count {
	background: rgba(255, 255, 255, 0.25);
}

/* --- Count --- */

.deckcms-directory__count {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 16px;
}

/* --- Grid Layout --- */

.deckcms-directory-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* --- List Layout --- */

.deckcms-directory-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.deckcms-directory-list .deckcms-card {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
}

.deckcms-directory-list .deckcms-card__header {
	flex-shrink: 0;
}

.deckcms-directory-list .deckcms-card__body {
	flex: 1;
}

/* --- Card --- */

.deckcms-card {
	transition: box-shadow 0.2s, transform 0.15s;
}

:where(.deckcms-card) {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 20px;
}

.deckcms-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.deckcms-card__header {
	display: flex;
}

/* --- Logo --- */

.deckcms-card__logo {
	overflow: hidden;
	margin-bottom: 12px;
	flex-shrink: 0;
}

:where(.deckcms-card__logo) {
	width: 80px;
	height: 80px;
	border-radius: 8px;
}

.deckcms-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.deckcms-card__logo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	font-size: 28px;
	font-weight: 700;
}

:where(.deckcms-card__logo--placeholder) {
	background: #e5e7eb;
}

/* --- Card Content --- */

.deckcms-card__name {
	margin: 0 0 8px;
}

:where(.deckcms-card__name) {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: #111827;
}

.deckcms-card__name a {
	color: inherit;
	text-decoration: none;
}

.deckcms-card__name a:hover {
	color: #2563eb;
}

.deckcms-card__description {
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

:where(.deckcms-card__description) {
	font-size: 14px;
	line-height: 1.5;
	color: #4b5563;
}

.deckcms-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.deckcms-tag-pill {
	display: inline-block;
	padding: 3px 10px;
}

:where(.deckcms-tag-pill) {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	color: #1e40af;
	background: #eff6ff;
	border-radius: 12px;
}

.deckcms-tag-pill--primary {
	font-weight: 600;
}

/* --- Contact Info --- */

.deckcms-card__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 8px;
}

:where(.deckcms-card__contact) {
	font-size: 13px;
	color: #4b5563;
}

.deckcms-card__contact a {
	color: #2563eb;
	text-decoration: none;
}

.deckcms-card__contact a:hover {
	text-decoration: underline;
}

.deckcms-card__contact .deckcms-icon {
	display: inline-flex;
	align-items: center;
	margin-right: 6px;
	line-height: 1;
	vertical-align: middle;
}

:where(.deckcms-card__contact .deckcms-icon) {
	font-size: 14px;
}

.deckcms-card__contact .deckcms-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* --- Address --- */

.deckcms-card__address {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-style: normal;
	margin-bottom: 8px;
}

:where(.deckcms-card__address) {
	font-size: 13px;
	color: #6b7280;
}

.deckcms-card__address .deckcms-icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	flex-shrink: 0;
	margin-top: 2px;
}

:where(.deckcms-card__address .deckcms-icon) {
	font-size: 14px;
}

.deckcms-card__address .deckcms-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* --- Special Offer --- */

.deckcms-card__offer {
	margin-top: 8px;
	padding: 8px 12px;
	font-size: 13px;
}

:where(.deckcms-card__offer) {
	background: #fef9c3;
	border-radius: 6px;
	color: #854d0e;
}

.deckcms-card__offer-label {
	font-weight: 600;
	margin-right: 4px;
}

/* --- Pagination --- */

.deckcms-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
}

.deckcms-pagination__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 500;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

:where(.deckcms-pagination__item) {
	color: #374151;
}

.deckcms-pagination__item:hover {
	background: #f3f4f6;
	border-color: #9ca3af;
}

:where(.deckcms-pagination__item--active) {
	background: #2563eb;
	color: #fff;
	border-color: #2563eb;
}

.deckcms-pagination__item--active:hover {
	background: #1d4ed8;
}

.deckcms-pagination__ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	color: #9ca3af;
	font-size: 14px;
}

/* --- Loading State --- */

.deckcms-loading {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.85);
	z-index: 10;
	font-size: 14px;
	color: #6b7280;
}

.deckcms-loading__spinner {
	width: 32px;
	height: 32px;
	border: 3px solid #e5e7eb;
	border-top-color: #2563eb;
	border-radius: 50%;
	animation: deckcms-spin 0.8s linear infinite;
}

@keyframes deckcms-spin {
	to { transform: rotate(360deg); }
}

/* --- Error & No Results --- */

.deckcms-error {
	padding: 16px 20px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 8px;
	color: #991b1b;
	font-size: 14px;
}

.deckcms-error--editor {
	background: #fffbeb;
	border-color: #fde68a;
	color: #92400e;
}

.deckcms-no-results {
	padding: 40px 20px;
	text-align: center;
	color: #6b7280;
	font-size: 15px;
	grid-column: 1 / -1;
}

/* --- Responsive --- */

@media (max-width: 1024px) {
	.deckcms-directory-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.deckcms-directory-grid {
		grid-template-columns: 1fr;
	}

	.deckcms-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.deckcms-directory-list .deckcms-card {
		flex-direction: column;
	}
}

/* ==========================================================================
   Detail View
   ========================================================================== */

/* --- Clickable Card Modifier --- */

.deckcms-card--clickable {
	cursor: pointer;
}

:where(.deckcms-card--clickable:hover) {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* --- Detail Container --- */

.deckcms-detail {
	max-width: 960px;
	margin: 0 auto;
}

/* --- Breadcrumb / Back --- */

.deckcms-detail__breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 14px;
	color: #6b7280;
}

.deckcms-detail__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	color: #2563eb;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

:where(.deckcms-detail__back:hover) {
	color: #1d4ed8;
	text-decoration: underline;
}

.deckcms-detail__back-icon {
	font-size: 16px;
}

.deckcms-detail__breadcrumb-separator {
	color: #d1d5db;
}

.deckcms-detail__breadcrumb-current {
	color: #374151;
	font-weight: 500;
}

/* --- Header --- */

.deckcms-detail__header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: start;
	padding: 24px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	margin-bottom: 24px;
}

:where(.deckcms-detail__header) {
	background: #fff;
}

.deckcms-detail__logo {
	overflow: hidden;
	flex-shrink: 0;
}

:where(.deckcms-detail__logo) {
	width: 120px;
	height: 120px;
	border-radius: 12px;
}

.deckcms-detail__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.deckcms-detail__logo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e5e7eb;
	color: #6b7280;
	font-size: 40px;
	font-weight: 700;
}

.deckcms-detail__name {
	margin: 0 0 4px;
}

:where(.deckcms-detail__name) {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	color: #111827;
}

.deckcms-detail__address {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-style: normal;
	color: #6b7280;
	margin-bottom: 8px;
}

.deckcms-detail__address .deckcms-icon {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	flex-shrink: 0;
}

.deckcms-detail__address .deckcms-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.deckcms-detail__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.deckcms-detail__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	text-decoration: none;
	white-space: nowrap;
}

.deckcms-detail__phone:hover {
	color: #2563eb;
}

.deckcms-detail__phone .deckcms-icon {
	display: inline-flex;
	align-items: center;
	font-size: 18px;
}

.deckcms-detail__phone .deckcms-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* --- Actions / Social Row --- */

.deckcms-detail__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}

.deckcms-detail__social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.deckcms-detail__social-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	font-size: 13px;
	background: #f3f4f6;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

:where(.deckcms-detail__social-link) {
	color: #374151;
}

.deckcms-detail__social-link:hover {
	background: #e5e7eb;
	color: #111827;
}

.deckcms-detail__social-link .deckcms-icon {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
}

.deckcms-detail__social-link .deckcms-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.deckcms-detail__cta-buttons {
	display: flex;
	gap: 12px;
}

/* --- Buttons --- */

.deckcms-detail__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 24px;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
	border: 2px solid transparent;
}

:where(.deckcms-detail__btn) {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	border-radius: 6px;
}

:where(.deckcms-detail__btn--primary) {
	background: #1f2937;
	color: #fff;
	border-color: #1f2937;
}

:where(.deckcms-detail__btn--primary:hover) {
	background: #111827;
	border-color: #111827;
}

:where(.deckcms-detail__btn--outline) {
	background: transparent;
	color: #374151;
	border-color: #d1d5db;
}

:where(.deckcms-detail__btn--outline:hover) {
	background: #f3f4f6;
	border-color: #9ca3af;
}

/* --- Two-Column Body --- */

.deckcms-detail__body {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	margin-bottom: 32px;
}

.deckcms-detail__section-title {
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid #e5e7eb;
}

:where(.deckcms-detail__section-title) {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #111827;
}

:where(.deckcms-detail__description) {
	font-size: 15px;
	line-height: 1.7;
	color: #374151;
}

.deckcms-detail__description ul,
.deckcms-detail__description ol {
	padding-left: 20px;
	margin: 12px 0;
}

.deckcms-detail__description li {
	margin-bottom: 6px;
}

/* --- Sidebar (right column) --- */

.deckcms-detail__sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.deckcms-detail__map {
	margin-bottom: 12px;
}

.deckcms-detail__map iframe {
	width: 100%;
	border: 0;
}

:where(.deckcms-detail__map iframe) {
	height: 250px;
	border-radius: 8px;
}

.deckcms-detail__map-links {
	display: flex;
	gap: 16px;
	font-size: 13px;
	font-weight: 500;
}

.deckcms-detail__map-link {
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

:where(.deckcms-detail__map-link) {
	color: #2563eb;
}

.deckcms-detail__map-link:hover {
	text-decoration: underline;
}

/* --- Connect List --- */

.deckcms-detail__connect-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.deckcms-detail__connect-list li {
	padding: 8px 0;
	border-bottom: 1px solid #f3f4f6;
}

.deckcms-detail__connect-list li:last-child {
	border-bottom: none;
}

.deckcms-detail__connect-list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-size: 14px;
}

:where(.deckcms-detail__connect-list a) {
	color: #2563eb;
}

.deckcms-detail__connect-list a:hover {
	text-decoration: underline;
}

.deckcms-detail__connect-list .deckcms-icon {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #6b7280;
}

.deckcms-detail__connect-list .deckcms-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* --- Special Offer --- */

.deckcms-detail__offer {
	margin-bottom: 32px;
}

:where(.deckcms-detail__offer) {
	padding: 20px 24px;
	background: #fef9c3;
	border-radius: 8px;
	color: #854d0e;
}

.deckcms-detail__offer-content {
	font-size: 15px;
	line-height: 1.6;
}

/* --- Footer --- */

.deckcms-detail__footer {
	text-align: center;
	border-radius: 12px;
	margin-top: 16px;
}

:where(.deckcms-detail__footer) {
	padding: 32px 24px;
	background: #f9fafb;
}

.deckcms-detail__footer-name {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 8px;
}

.deckcms-detail__footer-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: #374151;
	text-decoration: none;
	margin-bottom: 16px;
}

.deckcms-detail__footer-phone:hover {
	color: #2563eb;
}

.deckcms-detail__footer-phone .deckcms-icon {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
}

.deckcms-detail__footer-phone .deckcms-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.deckcms-detail__footer-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* --- Detail View Responsive --- */

@media (max-width: 1024px) {
	.deckcms-detail__body {
		grid-template-columns: 1fr 320px;
	}
}

@media (max-width: 767px) {
	.deckcms-detail__header {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.deckcms-detail__header-left {
		display: flex;
		justify-content: center;
	}

	.deckcms-detail__header-right {
		display: flex;
		justify-content: center;
	}

	.deckcms-detail__address {
		justify-content: center;
	}

	.deckcms-detail__tags {
		justify-content: center;
	}

	.deckcms-detail__actions {
		flex-direction: column;
		align-items: center;
	}

	.deckcms-detail__social {
		justify-content: center;
	}

	.deckcms-detail__cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.deckcms-detail__btn {
		width: 100%;
		justify-content: center;
	}

	.deckcms-detail__body {
		grid-template-columns: 1fr;
	}

	.deckcms-detail__footer-actions {
		flex-direction: column;
	}
}

/* =============================================================================
   New Members Widget
   ============================================================================= */

/* --- Grid container --- */

.deckcms-new-members {
	display: grid;
	gap: 16px;
}

/* Fallback column count — zero specificity so Elementor's responsive control
   always overrides it without needing !important. */
:where(.deckcms-new-members) {
	grid-template-columns: repeat(3, 1fr);
}

/* --- Individual card --- */

.deckcms-new-member {
	display: block;
	text-decoration: none;
	color: inherit;
}

:where(.deckcms-new-member) {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px 20px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* --- Card body (inherits text-align from base card controls) --- */

.deckcms-new-member .deckcms-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* --- Logo --- */

.deckcms-new-member__logo {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin-bottom: 12px;
}

:where(.deckcms-new-member__logo) {
	border-radius: 8px;
}

.deckcms-new-member__logo-placeholder {
	width: 64px;
	height: 64px;
	margin-bottom: 12px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

/* --- Name --- */

.deckcms-new-member__name {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 4px;
}

:where(.deckcms-new-member__name) {
	font-size: 15px;
	color: #2e7d6b;
}

/* --- Joined date --- */

.deckcms-new-member__date {
	line-height: 1.4;
}

:where(.deckcms-new-member__date) {
	font-size: 13px;
	color: #6b7280;
}

/* =============================================================================
   Login / Logout Widget
   ============================================================================= */

/* --- Login Form --- */

.deckcms-login-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.deckcms-login-form {
	width: 100%;
}

.deckcms-login-field {
	margin-bottom: 16px;
}

.deckcms-login-field label {
	display: block;
	margin-bottom: 6px;
}

:where(.deckcms-login-field label) {
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.deckcms-login-field input {
	width: 100%;
	padding: 10px 14px;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}

:where(.deckcms-login-field input) {
	font-size: 15px;
	line-height: 1.5;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
	color: #111827;
}

.deckcms-login-field input:focus {
	outline: none;
}

:where(.deckcms-login-field input:focus) {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

:where(.deckcms-login-heading) {
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 20px;
}

/* --- Login Button --- */

.deckcms-login-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px 24px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s;
}

:where(.deckcms-login-submit) {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	border-radius: 6px;
	background-color: #2563eb;
	color: #fff;
}

:where(.deckcms-login-submit:hover) {
	background-color: #1d4ed8;
}

/* --- Error Message --- */

.deckcms-login-error:empty {
	display: none;
}

:where(.deckcms-login-error) {
	color: #dc2626;
	font-size: 14px;
	margin: 0 0 12px;
}

/* --- Logged-In State --- */

.deckcms-logged-in-wrap {
	width: 100%;
	text-align: center;
}

:where(.deckcms-login-welcome) {
	font-size: 18px;
	font-weight: 500;
	color: #111827;
	margin: 0 0 16px;
}

/* --- Logout Button --- */

.deckcms-logout-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

:where(.deckcms-logout-submit) {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	border-radius: 6px;
	background-color: #dc2626;
	color: #fff;
}

:where(.deckcms-logout-submit:hover) {
	background-color: #b91c1c;
}

