
#cookie-banner {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #1e1e1e;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 9999 !important; /* force it to stay on top */
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.cookie-buttons button {
	margin-left: 10px;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.accept-btn {
	background-color: #6fcf97;
	color: #000;
}

.decline-btn {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.settings-btn {
	background: none;
	border: none;
	color: #999;
	text-decoration: underline;
	cursor: pointer;
}

#cookie-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	color: #000;
	padding: 30px;
	border-radius: 8px;
	z-index: 2000;
	display: none;
	width: 90%;
	max-width: 500px;
}

#cookie-modal h3 {
	margin-top: 0;
}

#cookie-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1500;
	display: none;
}

#close-modal {
	float: right;
	cursor: pointer;
	color: #888;
	font-size: 18px;
}

#cookie-banner p {
	font-size: 0.875rem;
}

button.btn.acceptCookies {
	background: #5fbc5f;
	color: white;
	font-weight: 600;
}

div#cookie-banner .form-check-label {
	font-size: 14px;
	font-weight: 500;
}

div#cookieModal a:hover {
	color: #0d6efd !important;
}

div#cookieModalLabel {
	font-size: 22px;
	font-weight: 500;
}

#cookieModal p {
	font-size: 1rem !important;
}

button#declaration-tab.active, button#about-tab.active {
	background: #f3f7ff !important;
	border: none;
}

.nav-item:has(>#declaration-tab.nav-link.active), .nav-item:has(>#about-tab.nav-link.active)
	{
	background-color: #f3f7ff;
}

#cookieTabContent {
	background: #f3f7ff;
	padding: 24px;
}

div#cookieTabContent h5 {
	font-size: 16px;
	color: #3fb6ee;
}

div#cookieModal a {
	color: #3fb6ee !important;
}

button#about-tab, #declaration-tab {
	color: #000;
}

.cookiesBox {
	border-bottom: 1px solid #cae8f4;
	margin-bottom: 22px !important;
}

.cookiesTable {
	height: 300px;
	overflow-y: scroll;
	margin-bottom: 12px;
}

.cookiesTable th, .cookiesTable td {
	background: #fff;
	font-size: 14px;
	padding: 8px 11px;
}

.functinalityTable th, .functinalityTable td {
	background: #fff;
	font-size: 14px;
	padding: 8px 11px;
}

.cookiesTable tr>td:first-child, .functinalityTable tr>td:first-child {
	color: #157915;
}

.functinalityTable th, .cookiesTable th {
	text-wrap: nowrap;
}

#cookieTab .nav-link:hover {
	border-color: transparent;
	background-color: transparent;
	box-shadow: none;
}

#cookieTab .nav-link:focus {
	outline: none;
	box-shadow: none;
	border-color: transparent;
}

div#cookieTabContent p {
	margin-bottom: 6px;
}