/**
 * Desktop View admin page styles — Module 8 Professional UI/UX Redesign.
 *
 * Visual redesign only: every class name below is unchanged from the
 * previous version, so no HTML or JavaScript logic needed to change to
 * apply this file (JS still targets the exact same selectors). Inspired
 * by the density, spacing and typography of leading real estate portals,
 * but original in its own detail — soft blue accent, white surfaces,
 * very light grey backgrounds, minimal borders, professional shadows.
 */

/* ── LAYOUT / RESET (scoped to this page only) ── */
.y2b-dv-wrap {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	max-width: 100%;
	color: #1e293b;
	-webkit-font-smoothing: antialiased;
}

.y2b-dv-wrap * {
	box-sizing: border-box;
}

/* ── HEADER — reduced ~40% in height, compact, count emphasised on the right ── */
.y2b-dv-header {
	background: #fff;
	border: 1px solid #e7ebf2;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	padding: 8px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin: 12px 0 12px;
}

.y2b-dv-header-left {
	display: flex;
	align-items: center;
	gap: 9px;
}

.y2b-dv-header-icon {
	width: 26px;
	height: 26px;
	background: #2563eb;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.y2b-dv-header-icon svg {
	width: 14px;
	height: 14px;
	color: #fff;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.2;
}

.y2b-dv-header-title {
	font-size: 0.84rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}

.y2b-dv-header-sub {
	font-size: 0.64rem;
	color: #64748b;
	margin-top: 1px;
	font-weight: 500;
}

.y2b-dv-header-right {
	display: flex;
	align-items: center;
}

/**
 * Live Status Panel (Module 9) — compact, two-line panel matching the
 * header's own height, positioned top-right beside the title. Replaces
 * the previous separate "Live" badge + filtered-results pill in this
 * spot. The filtered-results count (id="y2b-dv-count") that used to
 * live here is unchanged in every other respect (same id/class, same
 * desktop-view.js logic writes to it) — it has simply moved to sit
 * just above the table itself, a more conventional place for a
 * "showing N results" line, without touching any table/filter logic.
 */
.y2b-dv-status-panel {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	padding: 2px 4px;
}

.y2b-dv-status-top {
	display: flex;
	align-items: center;
	gap: 8px;
}

.y2b-dv-status-live {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.68rem;
	font-weight: 700;
	color: #15803d;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.y2b-dv-live-dot {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	animation: y2b-dv-blink 1.8s infinite;
}

@keyframes y2b-dv-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.2; }
}

.y2b-dv-status-total {
	font-size: 0.84rem;
	font-weight: 800;
	color: #0f172a;
}

.y2b-dv-status-updated {
	font-size: 0.66rem;
	font-weight: 500;
	color: #64748b;
	white-space: nowrap;
}

/* ── RESULTS LINE (relocated filtered-count pill) ── */
.y2b-dv-results-line {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 8px;
}

.y2b-dv-count {
	background: #eff6ff;
	border: 1px solid #dbeafe;
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 0.74rem;
	font-weight: 700;
	color: #2563eb;
	letter-spacing: 0.01em;
}

/* ── STICKY FILTER BAR ──
   Split into two layers on purpose:
   - .y2b-dv-filterbar-sticky: the outer wrapper. No longer sticky (per
     explicit request to remove all freeze/frozen behaviour) — kept as
     a plain block so the class name (used in the HTML/JS) still works
     without any markup changes.
   - .y2b-dv-filterbar: the inner flex row that actually holds the
     controls. This is where overflow-x lives, so the bar can scroll
     horizontally instead of ever wrapping to a second line. */
.y2b-dv-filterbar-sticky {
	background: #fff;
	border: 1.5px solid #cbd5e1;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	margin-bottom: 14px;
}

.y2b-dv-filterbar {
	display: flex;
	gap: 8px;
	align-items: flex-end;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 10px 14px;
}

.y2b-dv-fg {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 0 0 auto;
	width: 122px;
}

.y2b-dv-fg-search {
	width: 200px;
}

.y2b-dv-fg label {
	font-size: 0.62rem;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.055em;
	white-space: nowrap;
}

.y2b-dv-fg select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	height: 42px;
	padding: 0 30px 0 12px;
	border: 1.5px solid #94a3b8;
	border-radius: 7px;
	font-size: 0.79rem;
	line-height: normal;
	font-family: inherit;
	outline: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 9px center;
	background-size: 14px 14px;
	color: #1e293b;
	cursor: pointer;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: border-color 0.12s ease;
}

.y2b-dv-fg select:hover {
	border-color: #64748b;
}

.y2b-dv-fg select:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.y2b-dv-search-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 42px;
}

.y2b-dv-search-input {
	width: 100%;
	height: 42px;
	padding: 0 12px 0 34px;
	border: 1.5px solid #94a3b8;
	border-radius: 7px;
	font-size: 0.79rem;
	line-height: normal;
	font-family: inherit;
	outline: none;
	background: #fff;
	color: #1e293b;
	transition: border-color 0.12s ease;
}

.y2b-dv-search-input:hover {
	border-color: #64748b;
}

.y2b-dv-search-input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.y2b-dv-search-icon {
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY( -50% );
	width: 14px;
	height: 14px;
	color: #94a3b8;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	pointer-events: none;
}

.y2b-dv-reset-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 42px;
	padding: 0 16px;
	border: 1.5px solid #f43f5e;
	border-radius: 7px;
	background: #fff;
	color: #e11d48;
	font-size: 0.76rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
	flex: 0 0 auto;
	transition: background 0.12s ease;
}

.y2b-dv-reset-btn:hover {
	background: #fff1f2;
}

.y2b-dv-reset-btn svg {
	width: 12px;
	height: 12px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

/* ── BODY / STATES ── */
.y2b-dv-body {
	background: transparent;
}

.y2b-dv-hidden {
	display: none !important;
}

.y2b-dv-loading,
.y2b-dv-error,
.y2b-dv-empty {
	text-align: center;
	padding: 48px 20px;
	background: #fff;
	border: 1px solid #e7ebf2;
	border-radius: 10px;
	color: #64748b;
}

.y2b-dv-loading svg {
	width: 26px;
	height: 26px;
	margin: 0 auto 10px;
	opacity: 0.35;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	animation: y2b-dv-spin 0.9s linear infinite;
	display: block;
}

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

.y2b-dv-loading-text {
	font-size: 0.82rem;
}

.y2b-dv-error svg,
.y2b-dv-empty svg {
	width: 30px;
	height: 30px;
	margin: 0 auto 10px;
	display: block;
	opacity: 0.3;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
}

.y2b-dv-error {
	color: #be123c;
	border-color: #fecdd3;
	background: #fff1f2;
}

/* ── TABLE — no sticky header, columns auto-size to content, tighter rows ── */
.y2b-dv-table-wrap {
	background: #fff;
	border: 1px solid #e7ebf2;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.y2b-dv-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: auto;
	font-size: 12.5px;
}

.y2b-dv-table thead th {
	background: #e3e8f5;
	color: #33415c;
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: left;
	padding: 10px 12px;
	border-bottom: 1.5px solid #c7d0e6;
	border-right: 1px solid #d3dae9;
	white-space: nowrap;
}

.y2b-dv-table thead th:last-child {
	border-right: none;
}

.y2b-dv-table thead th[data-y2b-sort-key] {
	cursor: pointer;
	user-select: none;
}

.y2b-dv-table thead th[data-y2b-sort-key]:hover {
	background: #d7deef;
}

.y2b-dv-table thead th.y2b-dv-sort-active {
	background: #ccd6ec;
	color: #1e293b;
}

.y2b-dv-sort-icon {
	display: inline-block;
	margin-left: 4px;
	font-size: 9px;
	color: #2563eb;
}

.y2b-dv-table tbody tr {
	border-bottom: 1px solid #f0f2f6;
	transition: background 0.12s;
}

.y2b-dv-table tbody tr:last-child {
	border-bottom: none;
}

.y2b-dv-table tbody tr:nth-child(even) {
	background: #fafbfd;
}

.y2b-dv-table tbody tr:hover {
	background: #f1f6ff;
}

.y2b-dv-table td {
	padding: 5px 12px;
	color: #1e293b;
	vertical-align: middle;
	white-space: nowrap;
	border-right: 1px solid #eef1f6;
}

.y2b-dv-table td:last-child {
	border-right: none;
}

/* Action column kept compact and consistent (~80px) since it only ever
   holds one small button. */
.y2b-dv-table th:last-child,
.y2b-dv-table td:last-child {
	width: 100px;
	text-align: center;
}

/* ── TAG BADGES (mirrors the public Desktop View's tag style) ── */
.y2b-dv-tag {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 600;
	padding: 2px 7px;
	border-radius: 5px;
	border: 1px solid;
	white-space: nowrap;
}

.y2b-dv-tag-rent { background: #eff6ff; color: #1d4ed8; border: none; }
.y2b-dv-tag-sell { background: #f0fdf4; color: #15803d; border: none; }
.y2b-dv-tag-pg { background: #fdf4ff; color: #7e22ce; border: none; }
.y2b-dv-tag-commercial { background: #fffbeb; color: #a16207; border: none; }

.y2b-dv-tag-ff { background: #f0fdf4; color: #15803d; border-color: #dcfce7; }
.y2b-dv-tag-sf { background: #fffbeb; color: #a16207; border-color: #fef3c7; }
.y2b-dv-tag-uf { background: #fff7ed; color: #c2410c; border-color: #ffedd5; }

.y2b-dv-tag-family { background: #f0fdf4; color: #15803d; border-color: #dcfce7; }
.y2b-dv-tag-bachelor { background: #eff6ff; color: #1d4ed8; border-color: #dbeafe; }
.y2b-dv-tag-couple { background: #fdf4ff; color: #7e22ce; border-color: #f3e8ff; }
.y2b-dv-tag-ladies { background: #fdf2f8; color: #9d174d; border-color: #fce7f3; }
.y2b-dv-tag-gents { background: #fff7ed; color: #c2410c; border-color: #ffedd5; }
.y2b-dv-tag-any { background: #f3f4f6; color: #374151; border-color: #e5e7eb; }

/* Standalone (not combined with the base .y2b-dv-tag class) since it's
   applied on its own via tagCell(). */
.y2b-dv-tag-date {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 600;
	padding: 2px 7px;
	border-radius: 5px;
	border: 1px solid #bae6fd;
	background: #f0f9ff;
	color: #0369a1;
	white-space: nowrap;
}

.y2b-dv-bhk {
	font-weight: 600;
	color: #2563eb;
	background: #eff6ff;
	border: 1px solid #dbeafe;
	border-radius: 5px;
	padding: 2px 7px;
	font-size: 11px;
	display: inline-block;
}

.y2b-dv-price {
	font-weight: 700;
	color: #c2410c;
}

.y2b-dv-by-broker {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 5px;
	font-size: 0.66rem;
	font-weight: 600;
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #dcfce7;
	white-space: nowrap;
}

.y2b-dv-by-owner {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 5px;
	font-size: 0.66rem;
	font-weight: 600;
	background: #fdf2f8;
	color: #9d174d;
	border: 1px solid #fce7f3;
	white-space: nowrap;
}

/* ── ACTION BUTTON — reduced size ── */
.y2b-dv-btn-view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 4px 11px;
	background: #2563eb !important;
	color: #fff !important;
	border: 1px solid #2563eb !important;
	border-radius: 6px;
	font-size: 11.5px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.12s ease;
}

.y2b-dv-btn-view:hover {
	background: #1d4ed8 !important;
	color: #fff !important;
}

.y2b-dv-btn-view svg {
	width: 12px;
	height: 12px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.y2b-dv-no-link {
	color: #94a3b8;
	font-size: 11px;
	font-style: italic;
}

/* ── PAGINATION ── */
.y2b-dv-pagination-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 14px;
	position: relative;
}

.y2b-dv-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
}

.y2b-dv-per-page {
	display: flex;
	align-items: center;
	gap: 8px;
}

.y2b-dv-per-page label {
	font-size: 0.7rem;
	font-weight: 600;
	color: #64748b;
	white-space: nowrap;
}

.y2b-dv-per-page select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 34px;
	padding: 0 26px 0 10px;
	border: 1.5px solid #94a3b8;
	border-radius: 7px;
	font-size: 0.78rem;
	font-family: inherit;
	outline: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 7px center;
	background-size: 13px 13px;
	color: #1e293b;
	cursor: pointer;
}

.y2b-dv-per-page select:hover {
	border-color: #64748b;
}

.y2b-dv-per-page select:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.y2b-dv-page-nav,
.y2b-dv-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border: 1px solid #e2e8f0;
	border-radius: 7px;
	background: #fff;
	color: #2563eb;
	font-size: 0.78rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.12s ease;
}

.y2b-dv-page-btn {
	padding: 0;
}

.y2b-dv-page-nav:hover:not(:disabled),
.y2b-dv-page-btn:hover:not(.y2b-dv-page-btn-active) {
	background: #eff6ff;
}

.y2b-dv-page-nav:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.y2b-dv-page-btn-active {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff;
	cursor: default;
}

.y2b-dv-page-ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 34px;
	color: #cbd5e1;
	font-size: 0.78rem;
	font-weight: 600;
}

/* ── RESPONSIVE DESKTOP LAYOUT ── */
@media ( max-width: 1200px ) {
	.y2b-dv-table {
		font-size: 12px;
	}
}

@media ( max-width: 960px ) {
	.y2b-dv-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ── PROPERTY DETAILS MODAL — tighter whitespace, refined typography ── */
.y2b-dv-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	z-index: 100000;
	opacity: 0;
	transition: opacity 0.18s ease;
}

.y2b-dv-modal-backdrop.y2b-dv-modal-open {
	opacity: 1;
}

.y2b-dv-modal {
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 440px;
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.22);
	transform: scale( 0.96 ) translateY( 8px );
	opacity: 0;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.y2b-dv-modal-backdrop.y2b-dv-modal-open .y2b-dv-modal {
	transform: scale( 1 ) translateY( 0 );
	opacity: 1;
}

.y2b-dv-modal-header {
	background: #fff;
	border-bottom: 1px solid #eef1f6;
	border-radius: 12px 12px 0 0;
	padding: 12px 14px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.y2b-dv-modal-header-text {
	min-width: 0;
	flex: 1;
}

.y2b-dv-modal-title {
	font-size: 0.92rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.35;
}

.y2b-dv-modal-subtitle {
	font-size: 0.7rem;
	color: #64748b;
	margin-top: 2px;
	font-weight: 500;
}

.y2b-dv-modal-close-x {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: none;
	border-radius: 7px;
	background: #f1f5f9;
	color: #475569;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.12s ease;
}

.y2b-dv-modal-close-x:hover {
	background: #e2e8f0;
}

.y2b-dv-modal-close-x svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.y2b-dv-modal-body {
	padding: 14px;
}

.y2b-dv-modal-price-bar {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 8px;
	padding: 9px 12px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.y2b-dv-modal-price-label {
	font-size: 0.58rem;
	font-weight: 700;
	color: #ea580c;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2px;
}

.y2b-dv-modal-price-value {
	font-size: 1.08rem;
	font-weight: 800;
	color: #c2410c;
	line-height: 1.2;
}

.y2b-dv-modal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px 14px;
	margin-bottom: 12px;
}

.y2b-dv-modal-field {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.y2b-dv-modal-field-label {
	font-size: 0.58rem;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.y2b-dv-modal-field-value {
	font-size: 0.79rem;
	color: #1e293b;
	font-weight: 600;
	line-height: 1.4;
	word-break: break-word;
}

.y2b-dv-modal-desc-block {
	background: #f8fafc;
	border: 1px solid #eef1f6;
	border-radius: 8px;
	padding: 9px 12px;
	margin-bottom: 12px;
}

.y2b-dv-modal-desc-label {
	font-size: 0.58rem;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.y2b-dv-modal-desc-text {
	font-size: 0.79rem;
	color: #334155;
	line-height: 1.55;
	word-break: break-word;
}

.y2b-dv-modal-desc-text.y2b-dv-modal-desc-empty {
	color: #94a3b8;
	font-style: italic;
}

.y2b-dv-modal-contact {
	background: #f8fafc;
	border: 1px solid #eef1f6;
	border-radius: 8px;
	padding: 11px;
}

.y2b-dv-modal-contact-label {
	font-size: 0.58rem;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.y2b-dv-modal-contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.y2b-dv-modal-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #2563eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.y2b-dv-modal-contact-name {
	font-size: 0.8rem;
	font-weight: 700;
	color: #0f172a;
}

.y2b-dv-modal-contact-mobile {
	font-size: 0.74rem;
	color: #2563eb;
	font-weight: 600;
	margin-top: 1px;
}

/* Button row: always full width below the contact info, so Call,
   WhatsApp, Copy Mobile and Share (whichever are present) are equal
   width — a dedicated toolbar row rather than being squeezed into the
   contact-info row. */
.y2b-dv-modal-contact-buttons {
	display: flex;
	gap: 7px;
	margin-top: 10px;
	width: 100%;
}

.y2b-dv-modal-btn-call,
.y2b-dv-modal-btn-copy,
.y2b-dv-modal-btn-share {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex: 1;
	height: 36px;
	padding: 0 8px;
	background: #fff;
	color: #2563eb;
	border: 1px solid #dbeafe;
	border-radius: 7px;
	font-size: 0.68rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.12s ease;
}

.y2b-dv-modal-btn-call:hover,
.y2b-dv-modal-btn-copy:hover,
.y2b-dv-modal-btn-share:hover {
	background: #eff6ff;
}

.y2b-dv-modal-btn-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex: 1;
	height: 36px;
	padding: 0 8px;
	background: #25d366;
	color: #fff;
	border: none;
	border-radius: 7px;
	font-size: 0.68rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}

.y2b-dv-modal-btn-whatsapp:hover {
	background: #1fb855;
}

.y2b-dv-modal-btn-call svg,
.y2b-dv-modal-btn-copy svg,
.y2b-dv-modal-btn-share svg,
.y2b-dv-modal-btn-whatsapp svg {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
}

.y2b-dv-modal-btn-call svg,
.y2b-dv-modal-btn-copy svg,
.y2b-dv-modal-btn-share svg {
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.y2b-dv-modal-btn-whatsapp svg {
	fill: currentColor;
}

.y2b-dv-modal-footer {
	padding: 0 14px 14px;
}

.y2b-dv-modal-btn-close {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	height: 40px;
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.79rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.12s ease;
}

.y2b-dv-modal-btn-close:hover {
	background: #1d4ed8;
}

.y2b-dv-modal-btn-close svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

@media ( max-width: 560px ) {
	.y2b-dv-modal-grid {
		grid-template-columns: 1fr;
	}

	.y2b-dv-modal-contact-buttons {
		flex-wrap: wrap;
	}

	.y2b-dv-modal-contact-buttons > * {
		flex: 1 1 40%;
	}
}
