#logo {
	display: inline-block;
	vertical-align: middle;
	width: 190px;
	height: 32px;
    background-size: 155px;
    background-repeat: no-repeat;
    background-position: center;
	background-image: url('https://static.datareportive.com/img/DataReportiveLogo.svg');

	@media
	(-webkit-min-device-pixel-ratio: 2),
	(min-resolution: 192dpi) {
		background-image: url('https://static.datareportive.com/img/DataReportiveLogo.svg');
	}
}

.free-trial {

	position: relative;
	h5 {
		position: absolute;
		color: #777;
		font-size: 12px;
	}
}

#ft-links {
	justify-content: center;
}

.tutorial-card {
	h2 {
		font-size: 1.2rem;
	}
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}

#logo-text {
	display: inline-block;
	vertical-align: middle;

	> strong {
		color: #fff;
		letter-spacing: -0.8px;
		font-weight: 900;
	}
}

.normal-form {
	.errorlist {
		text-align: left;
	}
}

.signup-loading,
.signup-success {
	text-align: center;
	padding: 2rem 0;
}

.signup-loading img {
	margin-bottom: 1rem;
}

.signup-loading-message {
	font-size: 1.1rem;
	margin: 0;
}

.signup-success .btn {
	margin-top: 1rem;
}

.domain-container {
    display: flex;
}

.domain-container input {
	flex: 1;
}

.domain-container #domain-id {
    width: 150px;	
	margin: 9px 0px;
}



#demos .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

#demos .overlay img {
    position: absolute;
    height: 76px;
    left: 50%;
    margin-left: -38px;
    margin-top: -38px;
    top: 50%;
}

#demos .video {
    position: relative;
    background: rgba(0, 0, 0, 1);
	width: 200px;

	> img {
		width: 200px;
	}
}

.code-snippet {
	.title {

	}
}

.client-logo-img {
	width: 120px;
}

.logo-header {
	height: 32px;
}

.calendly-popup {
	color-scheme: initial
}

::selection {
	background: #7fb4e8; /* Highlight background color */
	color: black;        /* Text color on highlight */
}

.icon-xl {
	font-size: 24px;
	color: #37a7e8;
}

.icon-lg {
	font-size: 20px;
	color: #37a7e8;
}

.docs-nav-sidebar {
	top: 54px !important;

	.simplebar-content {
		padding-top: 11px !important;
	}
}

.docs-logo-link {
	filter: inherit !important;

	> img {
		height: 31px;
	}
}

.logo-section {
	font-size: 16px;
    font-weight: 700;
}

p code {
	color: var(--bs-primary) !important;
}

.code-snippet .title {
    padding: 10px;
    text-transform: uppercase;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin: 0;
    border-bottom: 0;
	background: #3c4257;
    color: #c1c9d2;
    border-top: 1px solid #21272e;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;	
	font-size: 13px;
}

.code-snippet.dark pre {
    color: #f5f5f5;
    background-color: #4f566b;
	padding: 10px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.sticky-item table th,td {
    padding: 10px;
    font-size: 13px;
}

#free-tag {
	margin-bottom: 33px !important;
}

// Cookie Consent Banner Styles
.cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	border-top: 1px solid #444;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	padding: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.cookie-consent-text {
	flex: 1;
	min-width: 300px;

	p {
		margin: 0;
		color: #e0e0e0;
		font-size: 14px;
		line-height: 1.5;
	}

	a {
		color: #00a2ff;
		text-decoration: none;
		font-weight: 500;

		&:hover {
			color: #0088cc;
			text-decoration: underline;
		}
	}
}

.cookie-consent-buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;

	.btn {
		padding: 10px 20px;
		border-radius: 6px;
		font-size: 14px;
		font-weight: 500;
		border: none;
		cursor: pointer;
		transition: all 0.2s ease;
		min-width: 100px;
	}

	.btn-primary {
		background: #00a2ff;
		color: white;

		&:hover {
			background: #0088cc;
			transform: translateY(-1px);
		}
	}

	.btn-outline-secondary {
		background: transparent;
		color: #e0e0e0;
		border: 1px solid #555;

		&:hover {
			background: #333;
			border-color: #666;
			transform: translateY(-1px);
		}
	}
}

// Animation for banner appearance
.cookie-consent-banner.show {
	animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
