/* NetTime Cookie Banner — frontend styles.
   Designed to match nettimesolutions.com: navy footer-like surface,
   lime-green primary CTA, square corners, HelveticaNeue stack. */

.ntcb-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: #003366;
	color: #ffffff;
	font-family: HelveticaNeue, Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
	border-top: 3px solid #99cc00;
	box-sizing: border-box;
}

.ntcb-banner[hidden] {
	display: none !important;
}

.ntcb-banner *,
.ntcb-banner *::before,
.ntcb-banner *::after {
	box-sizing: border-box;
}

.ntcb-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.ntcb-banner__message {
	flex: 1 1 320px;
	min-width: 0;
	color: #ffffff;
}

.ntcb-banner__message p {
	margin: 0 0 8px;
}

.ntcb-banner__message p:last-child {
	margin-bottom: 0;
}

.ntcb-banner__message a,
.ntcb-banner__link {
	color: #ffffff;
	text-decoration: underline;
	font-weight: 700;
}

.ntcb-banner__message a:hover,
.ntcb-banner__message a:focus,
.ntcb-banner__link:hover,
.ntcb-banner__link:focus {
	color: #99cc00;
	text-decoration: underline;
}

.ntcb-banner__button {
	background: #99cc00;
	color: #ffffff;
	border: 0;
	border-radius: 0;
	padding: 12px 28px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
	cursor: pointer;
	flex: 0 0 auto;
	transition: background-color 0.15s ease-in-out;
}

.ntcb-banner__button:hover,
.ntcb-banner__button:focus {
	background: #88b800;
	outline: none;
}

.ntcb-banner__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

@media (max-width: 600px) {
	.ntcb-banner__inner {
		padding: 16px;
	}

	.ntcb-banner__button {
		width: 100%;
		padding: 14px 16px;
	}
}
