#gcc-banner-root {
	--gcc-primary: #1a4d2e;
	--gcc-primary-dark: #123620;
	--gcc-text: #222;
	--gcc-bg: #ffffff;
	--gcc-border: #e2e2e2;
	--gcc-radius: 6px;
	position: fixed;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- Jobb oldali / bal oldali sáv --- */
.gcc-panel.gcc-side {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 340px;
	max-width: 90vw;
	background: var(--gcc-bg);
	box-shadow: 0 0 24px rgba(0,0,0,0.18);
	display: flex;
	flex-direction: column;
	transform: translateX(110%);
	transition: transform 0.35s ease;
	z-index: 999999;
}
.gcc-panel.gcc-side.gcc-position-right { right: 0; }
.gcc-panel.gcc-side.gcc-position-left { left: 0; transform: translateX(-110%); }
.gcc-panel.gcc-side.gcc-visible { transform: translateX(0); }

/* --- Alsó sáv --- */
.gcc-panel.gcc-bottom {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gcc-bg);
	box-shadow: 0 -2px 20px rgba(0,0,0,0.18);
	transform: translateY(110%);
	transition: transform 0.35s ease;
	z-index: 999999;
	max-height: 60vh;
}
.gcc-panel.gcc-bottom.gcc-visible { transform: translateY(0); }

.gcc-panel-inner {
	padding: 22px 20px;
	overflow-y: auto;
	flex: 1;
	color: var(--gcc-text);
}
.gcc-panel-inner h3 {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 700;
}
.gcc-panel-inner p {
	font-size: 13.5px;
	line-height: 1.5;
	margin: 0 0 14px;
}
.gcc-panel-inner a { color: var(--gcc-primary); }

.gcc-category-row {
	border-top: 1px solid var(--gcc-border);
	padding: 12px 0;
}
.gcc-category-row:last-of-type { border-bottom: 1px solid var(--gcc-border); }
.gcc-category-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	font-size: 13.5px;
}
.gcc-category-desc {
	font-size: 12.5px;
	color: #555;
	margin-top: 4px;
	margin-bottom: 0;
}

/* Toggle switch */
.gcc-switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	flex-shrink: 0;
}
.gcc-switch input { opacity: 0; width: 0; height: 0; }
.gcc-switch .gcc-slider {
	position: absolute;
	cursor: pointer;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: #ccc;
	transition: 0.2s;
	border-radius: 22px;
}
.gcc-switch .gcc-slider:before {
	position: absolute;
	content: "";
	height: 16px; width: 16px;
	left: 3px; bottom: 3px;
	background-color: white;
	transition: 0.2s;
	border-radius: 50%;
}
.gcc-switch input:checked + .gcc-slider { background-color: var(--gcc-primary); }
.gcc-switch input:checked + .gcc-slider:before { transform: translateX(18px); }
.gcc-switch input:disabled + .gcc-slider { background-color: var(--gcc-primary); opacity: 0.6; cursor: not-allowed; }

.gcc-btn-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 20px;
	border-top: 1px solid var(--gcc-border);
}
.gcc-btn {
	display: block;
	width: 100%;
	padding: 10px 14px;
	border-radius: var(--gcc-radius, 6px);
	font-size: 13.5px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	border: 1px solid var(--gcc-primary);
	background: #fff;
	color: var(--gcc-primary);
}
.gcc-btn.gcc-btn-primary {
	background: var(--gcc-primary);
	color: #fff;
}
.gcc-btn:hover { filter: brightness(0.95); }
.gcc-btn.gcc-btn-primary:hover { filter: brightness(0.88); }

/* --- Kis "csökkentett" indító gomb, hozzájárulás után is elérhető --- */
#gcc-reopen-btn {
	position: fixed;
	bottom: 16px;
	z-index: 999998;
	background: var(--gcc-primary);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 10px 16px;
	font-size: 12.5px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#gcc-reopen-btn.gcc-position-right { right: 16px; }
#gcc-reopen-btn.gcc-position-left { left: 16px; }
#gcc-reopen-btn.gcc-position-bottom { left: 16px; }

.gcc-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.35);
	z-index: 999998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.gcc-overlay.gcc-visible {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 480px) {
	.gcc-panel.gcc-side { width: 100vw; max-width: 100vw; }
}

/* --- Admin lista táblázat apró segéd stílusok --- */
.gcc-admin-wrap table.form-table th { width: 260px; }
.gcc-admin-wrap textarea.gcc-field { min-width: 220px; }
