/* --- 1. General Body and Container Styles --- */

body {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	padding: 20px;
	background: #f5f5f5;
	padding-bottom: 80px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* --- 2. Main Application Components --- */

.dhx_grid-container {
	border: 1px solid #ddd;
	height: 600px;
}

#controls {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

#analyze-btn {
	background: #0288d1;
	color: white;
	border: none;
	border-radius: 2px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	font-family: Roboto, sans-serif;
	line-height: 20px;
	cursor: pointer;
	transition: background-color 0.3s;
}

#analyze-btn:hover {
	background-color: #027abc;
}

#analyze-btn:disabled {
	background: #9e9e9e;
	cursor: not-allowed;
	color: #eeeeee;
}

/* Loading indicator text */
#loader {
	display: none;
	margin-left: 15px;
	font-style: italic;
	color: #555;
}


/* --- 3. Footer Styles --- */

/* Main footer container */
.dhx_demo-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	background: #2d333f;
	padding-left: 8px;
	padding-right: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 60px;
	max-height: 60px;
	z-index: 1000;
	font-family: Roboto, sans-serif;
}

.dhx_demo-footer .dhx_layout-cell-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 12px;
	width: 100%;
}

.dhx_demo-footer .dhx_slider-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	border-radius: 50%;
	border: 2px solid #fff;
	height: 36px;
	width: 36px;
	min-width: 36px;
	text-decoration: none;
	transition: border-color 0.3s, fill 0.3s;
}

.dhx_demo-footer .dhx_slider-btn:hover {
	border-color: #03a9f4;
}

.dhx_demo-footer .dhx_slider-btn:hover path {
	fill: #03a9f4;
}

.dhx_demo-footer .dhx_slider-btn path {
	transition: fill 0.3s;
}

.dhx_demo-footer .dhx_slider-btn--prev {
	transform: rotate(180deg);
	margin-right: 12px;
}

.dhx_demo-footer-text {
	flex: 1 1 auto;
	padding: 0 20px;
	text-align: center;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.8);
}

.dhx_demo-footer-text h1,
.dhx_demo-footer-text p {
	display: inline;
	margin: 0;
	padding: 0;
}

.dhx_demo-footer-text h1 {
	font-size: inherit;
	font-weight: inherit;
}

.dhx_demo-footer-text a {
	color: #03a9f4;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
	padding-left: 4px;
}

.dhx_demo-footer-text a:hover {
	text-decoration: underline;
}

.dhx_demo-footer .dhx_sample-btn {
	flex-shrink: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	padding: 6px 28px;
	font-family: Roboto, Arial, Tahoma, Verdana, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	display: flex;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}

.dhx_demo-footer .dhx_sample-btn--cta {
	background: #0288d1;
	color: #fff;
	border-radius: 32px;
	text-decoration: none;
	transition: background-color 0.2s ease-in-out;
}

.dhx_demo-footer .dhx_sample-btn--cta:hover {
	background: #027abc;
}