/* Dine Spotlight Directory - color palette sampled directly from the
   client's live site (dinespotlight.com): navy #022046, red #AA0D0E,
   gold #FBCD64, light background #F3F8FC. */
:root {
	--dsd-navy: #022046;
	--dsd-navy2: #0b3968;
	--dsd-red: #aa0d0e;
	--dsd-gold: #fbcd64;
	--dsd-ink: #102437;
	--dsd-muted: #62707f;
	--dsd-line: #dbe5eb;
	--dsd-soft: #f3f8fc;
	--dsd-white: #fff;
	--dsd-green: #237a57;
	--dsd-radius: 20px;
	--dsd-shadow: 0 18px 44px rgba(2, 32, 70, .14);
}
.dsd-card, .dsd-panel, .dsd-hero, .dsd-filters, .dsd-form, .dsd-dashboard {
	font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--dsd-ink);
}

/* ---------- Grid & Cards ---------- */
.dsd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 20px; }
@media (max-width: 900px) { .dsd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .dsd-grid { grid-template-columns: 1fr; } }
.dsd-grid--dashboard { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 620px) { .dsd-grid--dashboard { grid-template-columns: 1fr !important; } }

.dsd-grid-heading { font: 700 clamp(1.8rem, 3vw, 2.4rem)/1.1 "Playfair Display", serif; color: var(--dsd-navy); margin: 0 0 6px; }
.dsd-grid-head { display: flex; align-items: center; justify-content: space-between; margin: 0 0 14px; color: var(--dsd-navy); }
.dsd-grid-results-count { color: var(--dsd-muted); font-size: .9rem; }

.dsd-card { overflow: hidden; background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: var(--dsd-radius); box-shadow: 0 8px 24px rgba(2, 32, 70, .08); transition: .25s; }
.dsd-card:hover { transform: translateY(-5px); box-shadow: var(--dsd-shadow); }
.dsd-card__media { height: 220px; position: relative; background: #ccd6db center/cover; overflow: hidden; }
.dsd-card__image, .dsd-card__image--placeholder { width: 100%; height: 100%; object-fit: cover; display: block; background: #ccd6db; }
.dsd-card__body { padding: 20px; }
.dsd-card__title { margin: 0 0 7px; }
.dsd-card__title a { font: 600 1.6rem/1.15 "Playfair Display", serif; color: var(--dsd-navy); text-decoration: none; }
.dsd-card__rating { color: var(--dsd-red); font-weight: 800; font-size: .88rem; }
.dsd-card__meta { font-size: .88rem; color: var(--dsd-muted); display: flex; gap: 8px; flex-wrap: wrap; }
.dsd-card__menu-item { margin: 17px 0 12px; padding: 12px 13px; border-left: 3px solid var(--dsd-red); background: var(--dsd-soft); border-radius: 0 10px 10px 0; font-size: .87rem; font-weight: 700; color: var(--dsd-navy); }
.dsd-card__menu-item b { display: block; margin-bottom: 2px; }
.dsd-card__chips { display: flex; gap: 7px; flex-wrap: wrap; min-height: 30px; }
.dsd-chip { font-size: .72rem; border-radius: 999px; padding: 6px 9px; background: var(--dsd-soft); color: var(--dsd-navy); }
.dsd-card__actions { display: grid; grid-template-columns: 1.3fr 1fr; gap: 8px; margin-top: 17px; }

.dsd-badge { position: absolute; left: 14px; top: 14px; background: var(--dsd-gold); color: #17222b; border-radius: 999px; padding: 8px 11px; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.dsd-badge--partner { top: 48px; background: var(--dsd-red); color: #fff; }
.dsd-favorite-btn { position: absolute; right: 14px; top: 14px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--dsd-white); font-size: 1.2rem; cursor: pointer; line-height: 1; }
.dsd-favorite-btn.is-active { background: #fdeceb; color: var(--dsd-red); }
.dsd-favorite-btn--standalone { position: static; width: auto; height: auto; border-radius: 999px; padding: 10px 18px; border: 1px solid var(--dsd-line); font-size: .9rem; font-weight: 700; color: var(--dsd-navy); }
.dsd-favorite-btn--standalone.is-active { background: #fdeceb; color: var(--dsd-red); border-color: #f6c6c6; }

.dsd-btn { display: inline-block; text-align: center; border: 1px solid var(--dsd-line); border-radius: 999px; padding: 12px 16px; text-decoration: none !important; color: var(--dsd-navy) !important; background: var(--dsd-white); font-weight: 800; cursor: pointer; font-size: .92rem; }
.dsd-btn--primary { background: var(--dsd-navy); color: #fff !important; border-color: var(--dsd-navy); }
.dsd-btn--secondary { background: var(--dsd-white); color: var(--dsd-navy) !important; }
.dsd-no-results { grid-column: 1 / -1; padding: 45px; text-align: center; background: var(--dsd-white); border-radius: var(--dsd-radius); color: var(--dsd-muted); }

.dsd-pagination { display: flex; gap: 6px; justify-content: center; margin: 24px 0; }
.dsd-page-btn { border: 1px solid var(--dsd-line); background: var(--dsd-white); padding: 8px 14px; border-radius: 10px; cursor: pointer; font-weight: 700; color: var(--dsd-navy); }
.dsd-page-btn.is-active { background: var(--dsd-navy); color: #fff; border-color: var(--dsd-navy); }

/* ---------- Search & Filters ---------- */
.dsd-search-form { background: var(--dsd-white); border-radius: 24px; padding: 16px; display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 10px; box-shadow: var(--dsd-shadow); align-items: end; }
.dsd-search-form .dsd-field { border: 1px solid var(--dsd-line); border-radius: 14px; padding: 9px 13px; background: #fff; width: 100%; box-sizing: border-box; }
.dsd-search-form .dsd-field label { display: block; color: var(--dsd-muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 5px; }
.dsd-search-form .dsd-field select { width: 100%; border: 0; outline: 0; background: transparent; font-size: 1rem; color: var(--dsd-ink); }
.dsd-search-input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 1rem; padding: 4px 2px; }
.dsd-search-btn { border: 0; border-radius: 14px; background: var(--dsd-navy); padding: 0 27px; font-weight: 800; cursor: pointer; color: #fff; min-height: 58px; }
.dsd-apply-filters-btn { min-height: 46px; padding: 0 24px; }
@media (max-width: 900px) { .dsd-search-form { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .dsd-search-form { grid-template-columns: 1fr; } }

.dsd-filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 24px; align-items: center; background: var(--dsd-white); border-radius: 24px; padding: 16px; box-shadow: var(--dsd-shadow); }
.dsd-filters h4 { width: 100%; margin: 0 0 4px; font: 700 1rem "Playfair Display", serif; color: var(--dsd-navy); }
.dsd-filters select { border: 1px solid var(--dsd-line); border-radius: 999px; padding: 10px 16px; background: #fff; color: var(--dsd-navy); }
.dsd-filters label { border: 1px solid var(--dsd-line); background: var(--dsd-white); color: var(--dsd-navy); border-radius: 999px; padding: 10px 16px; cursor: pointer; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }
.dsd-filters label:has(input:checked) { background: var(--dsd-navy); border-color: var(--dsd-navy); color: #fff; }
.dsd-filters input[type=checkbox] { accent-color: var(--dsd-red); }

.dsd-single-filter select { border: 1px solid var(--dsd-line); border-radius: 999px; padding: 10px 16px; background: #fff; color: var(--dsd-navy); }
.dsd-single-filter label { border: 1px solid var(--dsd-line); background: var(--dsd-white); color: var(--dsd-navy); border-radius: 999px; padding: 10px 16px; cursor: pointer; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }
.dsd-single-filter label:has(input:checked) { background: var(--dsd-navy); border-color: var(--dsd-navy); color: #fff; }
.dsd-single-filter input[type=checkbox] { accent-color: var(--dsd-red); }

/* ---------- Directory Map ---------- */
.dsd-directory-map { margin: 18px 0 24px; border-radius: var(--dsd-radius); overflow: hidden; box-shadow: var(--dsd-shadow); }
.dsd-map-canvas { width: 100%; background: var(--dsd-soft); position: relative; }

/* Short attribution link - no long sentence, just "© OpenStreetMap". */
.dsd-map-attribution {
	position: absolute;
	right: 6px;
	bottom: 4px;
	z-index: 5;
	background: rgba(255, 255, 255, .85);
	color: #333;
	font-size: 11px;
	line-height: 1;
	padding: 3px 6px;
	border-radius: 3px;
	font-family: "DM Sans", sans-serif;
	text-decoration: none;
}
.dsd-map-attribution:hover {
	text-decoration: underline;
	color: var(--dsd-navy);
}

/* Force correct zoom control appearance regardless of the active theme's
   own global button styles (which can otherwise repaint these as solid
   navy pills with no visible +/- icon). */
.dsd-map-canvas .maplibregl-ctrl-group {
	background: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	box-shadow: 0 2px 8px rgba(2, 32, 70, .25) !important;
	overflow: hidden;
}
.dsd-map-canvas .maplibregl-ctrl-group button {
	width: 30px !important;
	height: 30px !important;
	background-color: #ffffff !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	position: relative;
}
.dsd-map-canvas .maplibregl-ctrl-group button + button {
	border-top: 1px solid var(--dsd-line) !important;
}
.dsd-map-canvas .maplibregl-ctrl-zoom-in::after,
.dsd-map-canvas .maplibregl-ctrl-zoom-out::after {
	content: "+";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 700;
	color: var(--dsd-navy);
	line-height: 1;
}
.dsd-map-canvas .maplibregl-ctrl-zoom-out::after {
	content: "\2212";
}

/* ---------- Forms (login/register/listing) ---------- */
.dsd-form { background: var(--dsd-white); border-radius: var(--dsd-radius); padding: clamp(22px, 4vw, 38px); box-shadow: var(--dsd-shadow); max-width: 640px; }
.dsd-form h3 { font: 600 clamp(1.6rem, 3vw, 2rem) "Playfair Display", serif; color: var(--dsd-navy); margin: 0 0 18px; }
.dsd-form label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--dsd-navy); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.dsd-form .description { display: block; color: var(--dsd-muted); font-size: .78rem; text-transform: none; font-weight: 400; letter-spacing: normal; margin: -8px 0 14px; }
.dsd-form input[type=text], .dsd-form input[type=email], .dsd-form input[type=url], .dsd-form input[type=password], .dsd-form textarea, .dsd-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--dsd-line); border-radius: 12px; margin-bottom: 14px; font-size: 1rem; }
.dsd-form button[type=submit], .dsd-form button { border: 0; border-radius: 999px; background: var(--dsd-navy); color: #fff; font-weight: 800; padding: 13px 22px; cursor: pointer; }
.dsd-form-error { background: #fdecea; color: var(--dsd-red); padding: 12px 16px; border-radius: 12px; margin-bottom: 14px; }
.dsd-form-success { background: #eafaf1; color: #145a32; padding: 12px 16px; border-radius: 12px; margin-bottom: 14px; }
.dsd-form-notice { background: #fff8e1; color: #7a5b00; padding: 12px 16px; border-radius: 12px; margin-bottom: 14px; }

/* ---------- Single Restaurant: Hero ---------- */
.dsd-hero { overflow: hidden; min-height: 480px; border-radius: 28px; position: relative; display: flex; align-items: end; box-shadow: var(--dsd-shadow); background: var(--dsd-navy) center/cover; }
.dsd-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 32, 70, .95) 0%, rgba(2, 32, 70, .68) 52%, rgba(2, 32, 70, .12)); }
.dsd-hero__content { position: relative; z-index: 1; color: #fff; padding: clamp(28px, 5vw, 64px); max-width: 760px; }
.dsd-hero .dsd-eyebrow { color: var(--dsd-gold); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.dsd-hero .dsd-hero__title { font: 700 clamp(2.35rem, 5vw, 4.75rem)/.98 "Playfair Display", serif; margin: 10px 0 12px; color: #fff; }
.dsd-hero__meta { color: #d9e4eb; line-height: 1.7; }
.dsd-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.dsd-hero__actions a { padding: 13px 20px; background: #fff; color: var(--dsd-navy) !important; font-weight: 800; border-radius: 999px; text-decoration: none !important; border: 0; }
.dsd-hero__actions a:first-child { background: var(--dsd-red); color: #fff !important; }

/* Standalone single-restaurant title/badges (used when not folded into the hero) */
.dsd-title { font: 700 clamp(2rem, 4vw, 3rem)/1.05 "Playfair Display", serif; color: var(--dsd-navy); margin: 14px 0; }
.dsd-logo img { border-radius: 14px; }

/* ---------- Single Restaurant: Panels ---------- */
.dsd-panel { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); margin-bottom: 20px; }
.dsd-panel .dsd-eyebrow, .dsd-eyebrow { color: var(--dsd-red); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.dsd-panel h2, .dsd-panel h3 { font: 600 clamp(1.5rem, 3vw, 2.1rem) "Playfair Display", serif; color: var(--dsd-navy); margin: 0 0 14px; }
.dsd-panel p, .dsd-description p { color: var(--dsd-muted); line-height: 1.75; }
.dsd-description { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); margin-bottom: 20px; color: var(--dsd-muted); line-height: 1.75; }

.dsd-featured-food { display: grid; grid-template-columns: 1.05fr 1fr; gap: 26px; align-items: center; background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); margin-bottom: 12px; }
.dsd-featured-food__image { width: 100%; height: 315px; object-fit: cover; border-radius: 17px; }
.dsd-featured-food__name { font: 600 clamp(1.5rem, 3vw, 2rem) "Playfair Display", serif; color: var(--dsd-navy); margin: 0 0 8px; }
.dsd-featured-food__description { color: var(--dsd-muted); line-height: 1.7; margin: 0 0 8px; }
.dsd-featured-food__price { display: inline-block; background: var(--dsd-gold); color: #17222b; font-weight: 800; border-radius: 999px; padding: 9px 13px; }
@media (max-width: 900px) { .dsd-featured-food { grid-template-columns: 1fr; } .dsd-featured-food__image { height: 240px; } }

.dsd-offer { background: var(--dsd-navy); color: #fff; border: 0; border-radius: 22px; padding: clamp(22px, 4vw, 38px); margin-bottom: 20px; }
.dsd-offer .dsd-eyebrow { color: var(--dsd-gold); }
.dsd-offer strong { display: block; font: 600 clamp(1.4rem, 2.6vw, 1.9rem) "Playfair Display", serif; margin-bottom: 8px; }
.dsd-offer__expiry { display: inline-block; border: 1px dashed rgba(255, 255, 255, .6); border-radius: 10px; padding: 8px 12px; font-weight: 800; color: var(--dsd-gold); margin-top: 6px; }

.dsd-catering { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); margin-bottom: 20px; }
.dsd-catering p { color: var(--dsd-muted); line-height: 1.7; }
.dsd-catering-packages { list-style: none; margin: 10px 0 0; padding: 0; }
.dsd-catering-packages li { padding: 10px 0; border-bottom: 1px solid var(--dsd-line); color: var(--dsd-muted); }
.dsd-private-events { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); margin-bottom: 20px; }

/* Side panels: business hours, address, social */
.dsd-hours { width: 100%; border-collapse: collapse; }
.dsd-hours th, .dsd-hours td { padding: 8px 0; border-bottom: 1px solid var(--dsd-line); text-align: left; color: var(--dsd-muted); font-weight: 400; }
.dsd-hours th { color: var(--dsd-navy); font-weight: 700; }
.dsd-address { color: var(--dsd-muted); font-style: normal; line-height: 1.6; display: block; margin-bottom: 10px; }
.dsd-map { height: 200px; border-radius: 14px; overflow: hidden; margin-top: 15px; background: var(--dsd-soft); }
.dsd-map iframe { width: 100%; height: 100%; border: 0; }
.dsd-info-list { list-style: none; margin: 0; padding: 0; }
.dsd-info-list li { padding: 13px 0; border-bottom: 1px solid var(--dsd-line); color: var(--dsd-muted); }
.dsd-info-list li strong { display: block; color: var(--dsd-navy); margin-bottom: 3px; font-weight: 700; }
.dsd-social { display: flex; gap: 8px; flex-wrap: wrap; }
.dsd-social a { padding: 9px 12px; border-radius: 9px; background: var(--dsd-soft); color: var(--dsd-navy); font-weight: 700; text-decoration: none; }

.dsd-rating { color: var(--dsd-red); font-weight: 800; margin: 10px 0; }
.dsd-widget-empty { color: var(--dsd-muted); padding: 20px; text-align: center; }

/* ---------- Reviews ---------- */
.dsd-reviews { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); margin-bottom: 20px; }
.dsd-review { padding: 14px 0; border-bottom: 1px solid var(--dsd-line); }
.dsd-review-form textarea { width: 100%; min-height: 90px; border: 1px solid var(--dsd-line); border-radius: 12px; padding: 10px 14px; margin: 10px 0; }
.dsd-review-form select { border: 1px solid var(--dsd-line); border-radius: 12px; padding: 8px 12px; }

/* ---------- Dashboards ---------- */
.dsd-dashboard { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); }
.dsd-dashboard h2 { font: 600 clamp(1.6rem, 3vw, 2.2rem) "Playfair Display", serif; color: var(--dsd-navy); }
.dsd-my-listings { width: 100%; border-collapse: collapse; margin-top: 14px; }
.dsd-my-listings th, .dsd-my-listings td { padding: 12px 10px; border-bottom: 1px solid var(--dsd-line); text-align: left; }
.dsd-status--pending { color: #a96800; font-weight: 700; }
.dsd-status--approved { color: var(--dsd-green); font-weight: 700; }
.dsd-status--changes { color: #7a5b00; font-weight: 700; }
.dsd-status--rejected { color: var(--dsd-red); font-weight: 700; }

/* ---------- Account Sidebar ---------- */
.dsd-account-sidebar { background: var(--dsd-white); border-radius: var(--dsd-radius); box-shadow: var(--dsd-shadow); padding: 30px 24px; text-align: center; }
.dsd-avatar-wrap { width: 110px; height: 110px; margin: 0 auto 14px; position: relative; }
.dsd-avatar-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid var(--dsd-soft); }
.dsd-avatar-upload-form { position: absolute; bottom: 0; right: 0; margin: 0; }
.dsd-avatar-upload-btn { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--dsd-navy); color: #fff; border: 3px solid #fff; cursor: pointer; font-size: 14px; }
.dsd-avatar-upload-btn input[type=file] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.dsd-account-handle { color: var(--dsd-red); font-weight: 700; margin-bottom: 14px; }
.dsd-account-role-badge { display: inline-block; background: var(--dsd-gold); color: #17222b; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; border-radius: 999px; padding: 5px 12px; margin-bottom: 20px; }
.dsd-account-nav { list-style: none; margin: 0; padding: 0; text-align: left; }
.dsd-account-nav li { border-top: 1px solid var(--dsd-line); }
.dsd-account-nav li:first-child { border-top: 0; }
.dsd-account-nav a { display: block; padding: 14px 6px; text-decoration: none; color: var(--dsd-navy); font-weight: 700; font-size: .95rem; }
.dsd-account-nav a.active, .dsd-account-nav a:hover { color: var(--dsd-red); }
.dsd-account-nav li.dsd-logout form { margin: 0; }
.dsd-account-nav li.dsd-logout button { width: 100%; text-align: left; background: none; border: 0; padding: 14px 6px; font-weight: 700; font-size: .95rem; color: #7a1010; cursor: pointer; font-family: inherit; }

/* ---------- Owner/Consumer Dashboard: stat chips + listing card grid ---------- */
.dsd-dash-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.dsd-dash-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.dsd-stat-chip { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: 14px; padding: 10px 16px; box-shadow: 0 4px 14px rgba(2, 32, 70, .06); }
.dsd-stat-chip b { display: block; font: 700 1.3rem "Playfair Display", serif; color: var(--dsd-navy); }
.dsd-stat-chip span { font-size: .75rem; color: var(--dsd-muted); text-transform: uppercase; letter-spacing: .04em; }
.dsd-btn-add-listing { background: var(--dsd-red) !important; color: #fff !important; border: 0; border-radius: 999px; padding: 14px 26px; font-weight: 800; text-decoration: none !important; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 24px rgba(170, 13, 14, .28); }
.dsd-btn-add-listing:hover, .dsd-btn-add-listing:visited, .dsd-btn-add-listing:active { color: #fff !important; }
.dsd-btn-add-listing:hover { background: #8f0b0c !important; }

.dsd-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .dsd-listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .dsd-listing-grid { grid-template-columns: 1fr; } }
.dsd-listing-card { background: var(--dsd-white); border: 1px solid var(--dsd-line); border-radius: var(--dsd-radius); overflow: hidden; box-shadow: 0 8px 24px rgba(2, 32, 70, .06); transition: .2s; }
.dsd-listing-card:hover { transform: translateY(-4px); box-shadow: var(--dsd-shadow); }
.dsd-listing-card__media { height: 160px; position: relative; background: #ccd6db center/cover; }
.dsd-listing-card__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.dsd-listing-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e7edf1, #f7f3ea); display: flex; align-items: center; justify-content: center; color: var(--dsd-muted); font-size: .8rem; }
.dsd-status-pill { position: absolute; top: 12px; left: 12px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 6px 11px; border-radius: 999px; }
.dsd-status-pill.pending { background: var(--dsd-gold); color: #17222b; }
.dsd-status-pill.approved { background: var(--dsd-green); color: #fff; }
.dsd-status-pill.changes { background: #7a5b00; color: #fff; }
.dsd-status-pill.rejected { background: var(--dsd-red); color: #fff; }
.dsd-listing-card__body { padding: 16px 18px; }
.dsd-listing-card__body h3 { font: 600 1.2rem "Playfair Display", serif; color: var(--dsd-navy); margin: 0 0 6px; }
.dsd-listing-card__note { font-size: .82rem; color: var(--dsd-muted); margin: 0 0 12px; min-height: 34px; }
.dsd-listing-card__actions { display: flex; gap: 8px; }
.dsd-listing-card__actions a { flex: 1; text-align: center; padding: 9px 8px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: .85rem; }
.dsd-listing-card__actions .edit { background: var(--dsd-navy); color: #fff !important; }
.dsd-listing-card__actions .view { border: 1px solid var(--dsd-line); color: var(--dsd-navy) !important; }
.dsd-empty-state { background: var(--dsd-white); border: 1px dashed var(--dsd-line); border-radius: var(--dsd-radius); padding: 50px 20px; text-align: center; color: var(--dsd-muted); }
.dsd-empty-state a { color: var(--dsd-red); font-weight: 700; text-decoration: none; }
