/* =========================================================
   DH Bejelentő – frontend stílusok
   Márkaszínek: sárga #f5c518, fekete #111111, fehér #ffffff
   ========================================================= */

.dhb-app,
.dhb-archive,
.dhb-modal {
	--dhb-yellow: #f5c518;
	--dhb-yellow-d: #d9ad10;
	--dhb-black: #111111;
	--dhb-ink: #1c1c1c;
	--dhb-muted: #6b7280;
	--dhb-line: #e5e7eb;
	--dhb-bg: #ffffff;
	--dhb-soft: #f8f8f6;
	--dhb-radius: 16px;
	--dhb-shadow: 0 10px 30px rgba(17, 17, 17, .10);
	--dhb-map-h: 620px;
	font-family: inherit;
	color: var(--dhb-ink);
	box-sizing: border-box;
}

.dhb-app *,
.dhb-archive *,
.dhb-modal * {
	box-sizing: border-box;
}

/* ---------------- Hero ---------------- */

.dhb-hero {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #111111 0%, #1f1f1f 55%, #2b2b28 100%);
	border-radius: var(--dhb-radius);
	padding: 28px 28px;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.dhb-hero::after {
	content: "";
	position: absolute;
	right: -60px;
	top: -60px;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(245, 197, 24, .35) 0%, rgba(245, 197, 24, 0) 70%);
	pointer-events: none;
}

.dhb-hero-text {
	flex: 1 1 340px;
	min-width: 260px;
}

.dhb-hero-title {
	margin: 0 0 8px;
	font-size: 27px;
	line-height: 1.2;
	font-weight: 800;
	color: #fff;
}

.dhb-hero-title span {
	color: var(--dhb-yellow);
}

.dhb-hero-sub {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .8);
	max-width: 560px;
}

.dhb-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* ---------------- Gombok ---------------- */

.dhb-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	padding: 13px 22px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	line-height: 1;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.dhb-btn:hover {
	transform: translateY(-2px);
}

.dhb-btn-primary {
	background: var(--dhb-yellow);
	color: var(--dhb-black);
	box-shadow: 0 6px 18px rgba(245, 197, 24, .35);
}

.dhb-btn-primary:hover {
	background: #ffd42e;
}

.dhb-btn-ghost {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .25);
}

.dhb-archive .dhb-btn-ghost,
.dhb-modal .dhb-btn-ghost {
	background: #fff;
	color: var(--dhb-ink);
	border: 1px solid var(--dhb-line);
}

.dhb-btn-dark {
	background: var(--dhb-black);
	color: var(--dhb-yellow);
}

.dhb-btn:disabled {
	opacity: .55;
	cursor: not-allowed;
	transform: none;
}

/* ---------------- Statisztika ---------------- */

.dhb-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(70px, 1fr));
	gap: 10px;
	flex: 0 1 380px;
}

.dhb-stat {
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	padding: 14px 10px;
	text-align: center;
}

.dhb-stat-num {
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: var(--dhb-yellow);
	line-height: 1.1;
}

.dhb-stat-lbl {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: rgba(255, 255, 255, .65);
	margin-top: 4px;
}

.dhb-stats-standalone {
	background: var(--dhb-black);
	border-radius: var(--dhb-radius);
	padding: 18px;
	flex: 1 1 100%;
}

/* ---------------- Eszköztár, szűrők ---------------- */

.dhb-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin: 18px 0 10px;
}

.dhb-search-wrap {
	flex: 1 1 260px;
	position: relative;
}

.dhb-search {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--dhb-line);
	border-radius: 999px;
	font-size: 15px;
	background: #fff;
	color: var(--dhb-ink);
}

.dhb-search:focus {
	outline: none;
	border-color: var(--dhb-yellow);
}

.dhb-filters,
.dhb-catfilters {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.dhb-catfilters {
	margin-bottom: 14px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.dhb-chip {
	border: 1.5px solid var(--dhb-line);
	background: #fff;
	color: var(--dhb-ink);
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all .15s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dhb-chip:hover {
	border-color: var(--dhb-black);
}

.dhb-chip.is-active {
	background: var(--dhb-black);
	color: #fff;
	border-color: var(--dhb-black);
}

.dhb-chip .dhb-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	display: inline-block;
}

.dhb-chip-count {
	font-size: 11.5px;
	opacity: .7;
}

/* ---------------- Térkép + lista ---------------- */

.dhb-main {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 16px;
	align-items: stretch;
}

.dhb-main-nolist {
	grid-template-columns: 1fr;
}

.dhb-map-wrap {
	position: relative;
	border-radius: var(--dhb-radius);
	overflow: hidden;
	box-shadow: var(--dhb-shadow);
	border: 1px solid var(--dhb-line);
}

.dhb-map {
	width: 100%;
	height: var(--dhb-map-h);
	min-height: 340px;
	background: #e8eae6;
	z-index: 1;
}

.dhb-locate {
	position: absolute;
	right: 12px;
	bottom: 24px;
	z-index: 500;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .22);
	font-size: 19px;
	cursor: pointer;
}

.dhb-layer-toggle {
	position: absolute;
	left: 12px;
	bottom: 24px;
	z-index: 500;
	background: #fff;
	border-radius: 999px;
	padding: 7px 13px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .18);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.dhb-list {
	background: var(--dhb-soft);
	border: 1px solid var(--dhb-line);
	border-radius: var(--dhb-radius);
	display: flex;
	flex-direction: column;
	max-height: calc(var(--dhb-map-h) + 2px);
	overflow: hidden;
}

.dhb-list-head {
	padding: 13px 16px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--dhb-muted);
	border-bottom: 1px solid var(--dhb-line);
	background: #fff;
}

.dhb-list-items {
	overflow-y: auto;
	padding: 8px;
	flex: 1;
}

/* ---------------- Bejelentés kártya ---------------- */

.dhb-card {
	background: #fff;
	border: 1px solid var(--dhb-line);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease;
	border-left: 4px solid var(--dhb-yellow);
}

.dhb-card:hover,
.dhb-card.is-active {
	border-color: var(--dhb-black);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.dhb-card-top {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	justify-content: space-between;
}

.dhb-card-title {
	font-weight: 700;
	font-size: 15px;
	line-height: 1.35;
	margin: 0;
}

.dhb-card-emoji {
	font-size: 19px;
	line-height: 1;
}

.dhb-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 7px;
	font-size: 12.5px;
	color: var(--dhb-muted);
}

.dhb-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-radius: 999px;
	padding: 3px 10px;
	font-size: 11.5px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.dhb-card-thumb {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	margin-top: 9px;
	display: block;
}

/* ---------------- Térképi jelölő ---------------- */

.dhb-pin {
	background: none;
	border: 0;
}

.dhb-pin-inner {
	width: 34px;
	height: 34px;
	border-radius: 50% 50% 50% 6px;
	transform: rotate(-45deg);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
	border: 2px solid #fff;
}

.dhb-pin-inner span {
	transform: rotate(45deg);
	font-size: 16px;
	line-height: 1;
}

.dhb-pin-urgent .dhb-pin-inner {
	animation: dhb-pulse 1.6s infinite;
}

@keyframes dhb-pulse {
	0%, 100% { box-shadow: 0 3px 8px rgba(0, 0, 0, .3); }
	50% { box-shadow: 0 0 0 10px rgba(220, 38, 38, .22); }
}

.dhb-traffipax-pin .dhb-pin-inner {
	border-radius: 8px;
	transform: none;
	background: #111;
}

.dhb-traffipax-pin .dhb-pin-inner span {
	transform: none;
}

/* Leaflet popup */
.dhb-popup {
	min-width: 210px;
	max-width: 260px;
}

.dhb-popup h4 {
	margin: 0 0 6px;
	font-size: 15px;
	line-height: 1.3;
}

.dhb-popup img {
	width: 100%;
	border-radius: 8px;
	margin: 8px 0 4px;
	display: block;
}

.dhb-popup-btn {
	display: inline-block;
	margin-top: 8px;
	background: var(--dhb-black, #111);
	color: #f5c518;
	border: 0;
	border-radius: 999px;
	padding: 8px 15px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

/* ---------------- Modális ablak ---------------- */

.dhb-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: flex-end;
	justify-content: center;
}

.dhb-modal.is-open {
	display: flex;
}

.dhb-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, .62);
	backdrop-filter: blur(2px);
}

.dhb-modal-box {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 640px;
	max-height: 92vh;
	border-radius: 22px 22px 0 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: dhb-slide .28s ease;
	box-shadow: 0 -10px 50px rgba(0, 0, 0, .35);
}

@keyframes dhb-slide {
	from { transform: translateY(40px); opacity: .4; }
	to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 700px) {
	.dhb-modal {
		align-items: center;
	}
	.dhb-modal-box {
		border-radius: 22px;
		max-height: 88vh;
	}
}

.dhb-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 20px;
	background: var(--dhb-black);
	color: #fff;
	flex: 0 0 auto;
}

.dhb-modal-title {
	margin: 0;
	font-size: 17px;
	font-weight: 800;
	color: #fff;
}

.dhb-modal-close {
	background: rgba(255, 255, 255, .12);
	border: 0;
	color: #fff;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
}

.dhb-modal-body {
	padding: 20px;
	overflow-y: auto;
	flex: 1 1 auto;
	-webkit-overflow-scrolling: touch;
}

.dhb-modal-foot {
	padding: 14px 20px;
	border-top: 1px solid var(--dhb-line);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	flex: 0 0 auto;
}

/* Lépésjelző */
.dhb-steps {
	display: flex;
	gap: 6px;
	padding: 0 20px 14px;
	background: var(--dhb-black);
}

.dhb-step-dot {
	flex: 1;
	height: 4px;
	border-radius: 3px;
	background: rgba(255, 255, 255, .2);
	transition: background .2s ease;
}

.dhb-step-dot.is-done {
	background: var(--dhb-yellow);
}

.dhb-step {
	display: none;
}

.dhb-step.is-active {
	display: block;
	animation: dhb-fade .2s ease;
}

@keyframes dhb-fade {
	from { opacity: 0; transform: translateX(8px); }
	to { opacity: 1; transform: translateX(0); }
}

.dhb-step h3 {
	margin: 0 0 4px;
	font-size: 19px;
	font-weight: 800;
}

.dhb-step-sub {
	margin: 0 0 16px;
	color: var(--dhb-muted);
	font-size: 14px;
	line-height: 1.5;
}

/* Űrlapelemek */
.dhb-field {
	margin-bottom: 15px;
}

.dhb-label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	margin-bottom: 6px;
}

.dhb-input,
.dhb-textarea,
.dhb-select {
	width: 100%;
	border: 2px solid var(--dhb-line);
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
	color: var(--dhb-ink);
}

.dhb-input:focus,
.dhb-textarea:focus,
.dhb-select:focus {
	outline: none;
	border-color: var(--dhb-yellow);
}

.dhb-textarea {
	min-height: 120px;
	resize: vertical;
}

.dhb-help {
	font-size: 12.5px;
	color: var(--dhb-muted);
	margin-top: 5px;
	line-height: 1.45;
}

.dhb-hp {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0;
	height: 0;
	width: 0;
}

/* Kategóriaválasztó */
.dhb-cat-group-title {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--dhb-muted);
	font-weight: 700;
	margin: 14px 0 8px;
}

.dhb-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 8px;
}

.dhb-cat-btn {
	display: flex;
	align-items: center;
	gap: 9px;
	border: 2px solid var(--dhb-line);
	background: #fff;
	border-radius: 12px;
	padding: 11px 12px;
	font-size: 13.5px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	line-height: 1.3;
	transition: all .12s ease;
	color: var(--dhb-ink);
}

.dhb-cat-btn:hover {
	border-color: var(--dhb-black);
}

.dhb-cat-btn.is-selected {
	border-color: var(--dhb-yellow);
	background: #fffbe8;
	box-shadow: 0 3px 12px rgba(245, 197, 24, .3);
}

.dhb-cat-btn .e {
	font-size: 20px;
	line-height: 1;
	flex: 0 0 auto;
}

/* Helyválasztó */
.dhb-loc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.dhb-picker-map {
	width: 100%;
	height: 300px;
	border-radius: 14px;
	border: 1px solid var(--dhb-line);
	overflow: hidden;
	background: #e8eae6;
	z-index: 1;
}

.dhb-addr-box {
	margin-top: 10px;
	background: var(--dhb-soft);
	border: 1px solid var(--dhb-line);
	border-radius: 12px;
	padding: 11px 14px;
	font-size: 14px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.dhb-addr-box strong {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--dhb-muted);
	margin-bottom: 2px;
}

.dhb-suggestions {
	list-style: none;
	margin: 6px 0 0;
	padding: 0;
	border: 1px solid var(--dhb-line);
	border-radius: 12px;
	overflow: hidden;
	max-height: 190px;
	overflow-y: auto;
}

.dhb-suggestions li {
	padding: 10px 13px;
	font-size: 13.5px;
	cursor: pointer;
	border-bottom: 1px solid var(--dhb-line);
}

.dhb-suggestions li:last-child {
	border-bottom: 0;
}

.dhb-suggestions li:hover {
	background: #fffbe8;
}

/* Fotófeltöltés */
.dhb-drop {
	border: 2px dashed var(--dhb-line);
	border-radius: 14px;
	padding: 26px 16px;
	text-align: center;
	cursor: pointer;
	transition: all .15s ease;
	background: var(--dhb-soft);
}

.dhb-drop:hover,
.dhb-drop.is-over {
	border-color: var(--dhb-yellow);
	background: #fffbe8;
}

.dhb-drop-emoji {
	font-size: 30px;
	display: block;
	margin-bottom: 6px;
}

.dhb-drop-text {
	font-weight: 700;
	font-size: 15px;
}

.dhb-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 12px;
}

.dhb-thumb {
	position: relative;
	width: 88px;
	height: 88px;
	border-radius: 11px;
	overflow: hidden;
	border: 1px solid var(--dhb-line);
}

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

.dhb-thumb button {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 0;
	background: rgba(17, 17, 17, .8);
	color: #fff;
	font-size: 13px;
	cursor: pointer;
	line-height: 1;
}

/* Jelölőnégyzet */
.dhb-check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13.5px;
	line-height: 1.5;
	cursor: pointer;
	margin-bottom: 11px;
}

.dhb-check input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	accent-color: #f5c518;
}

/* Üzenetek */
.dhb-msg {
	border-radius: 12px;
	padding: 12px 15px;
	font-size: 14px;
	margin-bottom: 14px;
	line-height: 1.5;
}

.dhb-msg-error {
	background: #fee2e2;
	border-left: 4px solid #dc2626;
	color: #7f1d1d;
}

.dhb-msg-info {
	background: #fffbe8;
	border-left: 4px solid var(--dhb-yellow);
}

.dhb-msg-ok {
	background: #dcfce7;
	border-left: 4px solid #16a34a;
	color: #14532d;
}

/* Siker képernyő */
.dhb-success {
	text-align: center;
	padding: 12px 0 4px;
}

.dhb-success-emoji {
	font-size: 52px;
	display: block;
	margin-bottom: 10px;
}

.dhb-code {
	display: inline-block;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: .06em;
	background: var(--dhb-black);
	color: var(--dhb-yellow);
	border-radius: 12px;
	padding: 12px 20px;
	margin: 12px 0 6px;
}

.dhb-share {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 14px;
}

/* Ügykövetés idővonal */
.dhb-timeline {
	list-style: none;
	margin: 16px 0 0;
	padding: 0 0 0 8px;
	border-left: 2px solid var(--dhb-line);
}

.dhb-timeline li {
	position: relative;
	padding: 0 0 20px 20px;
}

.dhb-timeline li::before {
	content: "";
	position: absolute;
	left: -9px;
	top: 3px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--dhb-line);
}

.dhb-timeline li.is-done::before {
	border-color: var(--tl-color, #16a34a);
	background: var(--tl-color, #16a34a);
}

.dhb-tl-title {
	font-weight: 700;
	font-size: 14.5px;
}

.dhb-tl-date {
	font-size: 12.5px;
	color: var(--dhb-muted);
	margin-top: 2px;
}

.dhb-tl-note {
	font-size: 13.5px;
	margin-top: 5px;
	background: var(--dhb-soft);
	border-radius: 9px;
	padding: 8px 11px;
	line-height: 1.5;
}

/* Ügy részletei */
.dhb-detail-photos {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 12px 0;
}

.dhb-detail-photos img {
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 11px;
	cursor: zoom-in;
	border: 1px solid var(--dhb-line);
}

.dhb-kv {
	display: grid;
	grid-template-columns: 116px 1fr;
	gap: 5px 12px;
	font-size: 14px;
	margin-top: 12px;
}

.dhb-kv dt {
	color: var(--dhb-muted);
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: .03em;
	font-weight: 700;
	padding-top: 2px;
}

.dhb-kv dd {
	margin: 0;
}

/* ---------------- Lebegő gomb ---------------- */

.dhb-fab {
	position: fixed;
	bottom: calc(var(--dhb-fab-bottom, 96px) + env(safe-area-inset-bottom, 0px));
	z-index: 99998;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--dhb-yellow, #f5c518);
	color: #111111;
	border: 0;
	border-radius: 999px;
	padding: 15px 21px;
	font-size: 15.5px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 8px 26px rgba(17, 17, 17, .3);
	transition: transform .18s ease, box-shadow .18s ease;
}

.dhb-fab:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 32px rgba(17, 17, 17, .38);
}

.dhb-fab:active {
	transform: scale(.97);
}

.dhb-fab-emoji {
	font-size: 21px;
	line-height: 1;
	position: relative;
	z-index: 2;
}

.dhb-fab-label {
	position: relative;
	z-index: 2;
	white-space: nowrap;
}

.dhb-fab-ring {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 2px solid rgba(245, 197, 24, .85);
	animation: dhb-ring 2.4s ease-out infinite;
	pointer-events: none;
}

@keyframes dhb-ring {
	0% { transform: scale(1); opacity: .8; }
	70% { transform: scale(1.28); opacity: 0; }
	100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.dhb-fab-ring,
	.dhb-pin-urgent .dhb-pin-inner {
		animation: none;
	}
}

.dhb-fab-jobb {
	right: 18px;
	left: auto;
}

.dhb-fab-bal {
	left: 18px;
	right: auto;
}

@media (max-width: 600px) {
	.dhb-fab {
		bottom: calc(var(--dhb-fab-bottom-m, 84px) + env(safe-area-inset-bottom, 0px));
		padding: 14px 16px;
		font-size: 14.5px;
	}
	.dhb-fab-jobb {
		right: 12px;
	}
	.dhb-fab-bal {
		left: 12px;
	}
	.dhb-fab-label {
		display: none;
	}
	.dhb-fab-emoji {
		font-size: 23px;
	}
}

/* ---------------- Archívum ---------------- */

.dhb-arch-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 12px;
}

.dhb-muted {
	color: var(--dhb-muted);
	font-size: 14px;
}

.dhb-note {
	font-size: 13px;
	color: var(--dhb-muted);
	margin-top: 12px;
	line-height: 1.5;
}

.dhb-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(0, 0, 0, .18);
	border-top-color: var(--dhb-black);
	border-radius: 50%;
	animation: dhb-spin .7s linear infinite;
	vertical-align: -3px;
	margin-right: 7px;
}

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

/* =========================================================
   Sablon-felülírások
   A WordPress sablon (Barta/Elementor) saját button:hover
   szabályai elrontanák a színeket, ezért ezeket felülírjuk.
   ========================================================= */

.dhb-app button,
.dhb-archive button,
.dhb-modal button,
.dhb-fab {
	font-family: inherit;
	text-transform: none !important;
	letter-spacing: normal !important;
	box-sizing: border-box;
}

/* Kategóriaválasztó gombok */
.dhb-modal .dhb-cat-btn,
.dhb-modal .dhb-cat-btn:link,
.dhb-modal .dhb-cat-btn:visited {
	background: #ffffff !important;
	color: #1c1c1c !important;
	border-color: #e5e7eb !important;
}

.dhb-modal .dhb-cat-btn:hover,
.dhb-modal .dhb-cat-btn:focus {
	background: #fffdf2 !important;
	color: #1c1c1c !important;
	border-color: #111111 !important;
}

.dhb-modal .dhb-cat-btn.is-selected,
.dhb-modal .dhb-cat-btn.is-selected:hover,
.dhb-modal .dhb-cat-btn.is-selected:focus {
	background: #fffbe8 !important;
	color: #111111 !important;
	border-color: #f5c518 !important;
	box-shadow: 0 3px 12px rgba(245, 197, 24, .35) !important;
}

.dhb-modal .dhb-cat-btn.is-selected::after {
	content: "✓";
	margin-left: auto;
	color: #b8890a;
	font-weight: 800;
}

/* Szűrő chipek */
.dhb-app .dhb-chip,
.dhb-archive .dhb-chip {
	background: #ffffff !important;
	color: #1c1c1c !important;
}

.dhb-app .dhb-chip:hover,
.dhb-archive .dhb-chip:hover {
	background: #fffdf2 !important;
	color: #111111 !important;
	border-color: #111111 !important;
}

.dhb-app .dhb-chip.is-active,
.dhb-app .dhb-chip.is-active:hover,
.dhb-archive .dhb-chip.is-active,
.dhb-archive .dhb-chip.is-active:hover {
	background: #111111 !important;
	color: #ffffff !important;
	border-color: #111111 !important;
}

/* Fő gombok */
.dhb-app .dhb-btn-primary,
.dhb-archive .dhb-btn-primary,
.dhb-modal .dhb-btn-primary {
	background: #f5c518 !important;
	color: #111111 !important;
}

.dhb-app .dhb-btn-primary:hover,
.dhb-archive .dhb-btn-primary:hover,
.dhb-modal .dhb-btn-primary:hover {
	background: #ffd42e !important;
	color: #111111 !important;
}

.dhb-app .dhb-btn-dark,
.dhb-modal .dhb-btn-dark {
	background: #111111 !important;
	color: #f5c518 !important;
}

.dhb-app .dhb-btn-dark:hover,
.dhb-modal .dhb-btn-dark:hover {
	background: #000000 !important;
	color: #ffd42e !important;
}

.dhb-hero .dhb-btn-ghost {
	background: rgba(255, 255, 255, .1) !important;
	color: #ffffff !important;
}

.dhb-hero .dhb-btn-ghost:hover {
	background: rgba(255, 255, 255, .2) !important;
	color: #ffffff !important;
}

.dhb-modal .dhb-btn-ghost,
.dhb-archive .dhb-btn-ghost {
	background: #ffffff !important;
	color: #1c1c1c !important;
	border: 1px solid #e5e7eb !important;
}

.dhb-modal .dhb-btn-ghost:hover,
.dhb-archive .dhb-btn-ghost:hover {
	background: #f8f8f6 !important;
	color: #111111 !important;
	border-color: #111111 !important;
}

.dhb-modal .dhb-modal-close {
	background: rgba(255, 255, 255, .14) !important;
	color: #ffffff !important;
}

.dhb-modal .dhb-modal-close:hover {
	background: #f5c518 !important;
	color: #111111 !important;
}

/* Lebegő gomb */
.dhb-fab,
.dhb-fab:link,
.dhb-fab:visited {
	background: #f5c518 !important;
	color: #111111 !important;
	border: 0 !important;
}

.dhb-fab:hover,
.dhb-fab:focus {
	background: #ffd42e !important;
	color: #111111 !important;
}

/* A sablon esetleges input-stílusai */
.dhb-modal .dhb-input,
.dhb-modal .dhb-textarea,
.dhb-app .dhb-search,
.dhb-archive .dhb-search {
	background: #ffffff !important;
	color: #1c1c1c !important;
	max-width: 100% !important;
}

/* Leaflet ne kerüljön a modális ablak fölé */
.leaflet-pane,
.leaflet-top,
.leaflet-bottom {
	z-index: 400 !important;
}

/* ---------------- Reszponzív ---------------- */

@media (max-width: 900px) {
	.dhb-main {
		grid-template-columns: 1fr;
	}
	.dhb-list {
		max-height: 420px;
	}
	.dhb-map {
		height: 400px;
	}
	.dhb-hero {
		padding: 22px 20px;
	}
	.dhb-hero-title {
		font-size: 23px;
	}
	.dhb-stats {
		flex: 1 1 100%;
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 480px) {
	.dhb-stats {
		grid-template-columns: repeat(2, 1fr);
	}
	.dhb-stat-num {
		font-size: 21px;
	}
	.dhb-modal-body {
		padding: 16px;
	}
	.dhb-cat-grid {
		grid-template-columns: 1fr 1fr;
	}
	.dhb-kv {
		grid-template-columns: 1fr;
		gap: 2px;
	}
	.dhb-kv dd {
		margin-bottom: 8px;
	}
}
