.gcc-cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: rgba(20, 24, 31, 0.96);
	color: #f8fafc;
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.22);
	padding: 16px;
}

.gcc-cookie-consent__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.gcc-cookie-consent__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #e5e7eb;
}

.gcc-cookie-consent__link {
	color: #93c5fd;
	text-decoration: underline;
	margin-left: 8px;
}

.gcc-cookie-consent__actions {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.gcc-cookie-consent__button {
	border: 0;
	border-radius: 4px;
	background: #0ea5e9;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 10px 16px;
	cursor: pointer;
}

.gcc-cookie-consent__button:hover,
.gcc-cookie-consent__button:focus {
	background: #0284c7;
	outline: none;
}

.gcc-cookie-consent__button--secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.gcc-cookie-consent__button--secondary:hover,
.gcc-cookie-consent__button--secondary:focus {
	background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
	.gcc-cookie-consent__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.gcc-cookie-consent__actions {
		width: 100%;
	}

	.gcc-cookie-consent__button {
		width: 100%;
	}
}

