:root {
	--cmp-atl-bg: #13adeb;
	--cmp-dark: #0083b7;
}

.cmp-objects-fields-editor__add-value {
	gap: 10px;
}
	
.dash-components-devices-card__card {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #CCC;
	border-radius: 8px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	cursor: pointer;
	transition: background 0.2s;
}

.dash-components-devices-card__card.selected {
	background: #FC9;
	border-width: 2px;
}

.dash-components-devices-card__header {
	overflow: hidden;
	display: flex;
	flex-direction: row;
	background: #FAFAFA;
	padding: 0 6px;
}

.dash-components-devices-card__header > div {
	white-space: nowrap;
	line-height: 24px;
	flex: 0.5;
}

.dash-components-devices-card__network {
	text-align: right;
}

.dash-components-devices-card__main {
	padding: 6px;
	flex: 1;
	display: flex;
	flex-direction: row;
	overflow: hidden;
}

.dash-components-devices-card__card:active {
	background: #EEE;
}

.dash-components-devices-card__image {
	margin-right: 16px;
}

.dash-components-devices-card__image > img {
	width: 128px;
	border-radius: 8px;
}

.dash-components-devices-card__role {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
}

.dash-components-devices-card__info {
	flex: 1;
}

.dash-components-devices-card__info > div {
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 20px;
}

.dash-components-devices-card__info > .dash-components-devices-card__time {
	margin: 10px 0;
}

.dash-components-devices-card__title {
	font-weight: bold;
}

.dash-components-devices-card__facility {
	margin-left: 8px;
}

.dash-components-devices-card__meter {
	margin-left: 16px;
}

.dash-components-devices-card__buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 6px;
	gap: 6px;
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
}

.dash-components-devices-card__button {
	min-width: 0;
	max-width: 52px;
	overflow: hidden;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dash-components-devices-card__button > img {
	min-width: 0;
	width: 100%;
}

.dash-components-devices-card__button > span {
	font-size: 12px;
	font-weight: bold;
}



.dash-components-devices-thermostat-compact__row {
	margin-top: 6px;
	border-top: 1px solid #EEE;
	padding-top: 6px;
	display: grid;
	gap: 6px;
	grid-gap: 6px;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.dash-components-devices-thermostat-compact__entry {
	display: flex;
	gap: 4px;
	padding: 4px;
	border: 1px solid #DDD;
	border-radius: 6px;
}


/* Introduction */

.dash-intro__view,
.dash-intro__scroll,
.dash-intro__list,
.dash-intro__page {
	position: relative;
	box-sizing: border-box;
	height: 100%;
	background: var(--cmp-atl-bg);
}

.dash-intro__view {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.dash-intro__controls {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
}

.dash-intro__scroll {
	width: 100%;
	overflow: hidden;
	overflow-x: auto;
	scroll-behavior: smooth;
}

.dash-intro__list {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	transition: left 0.5s;
	overflow: hidden;
}

.dash-intro__page {
	flex: 1 1 0px;
	min-width: 0;
	overflow: hidden;
	overflow-y: auto;
	padding: 20px;
	color: white;
	font-size: 140%;
}

.dash-intro__btn-next,
.dash-intro__btn-done {
	display: flex;
	gap: 4px;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 50px;
	border: 1px solid white;
	border-radius: 14px;
	padding: 8px 16px;
	cursor: pointer;
}

.dash-intro__btn-next > i,
.dash-intro__btn-done > i {
	width: 16px;
	height: 16px;
	background: url('images/next.svg') 50% 50% no-repeat;
	background-size: contain;
}


.dash-intro__circles {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 1000; /* Ensure it's above page content */
	background: rgba(19, 173, 235, 0.4);
	border-radius: 16px;
}

.dash-intro__circles > div {
	padding: 10px;
	width: 10px;
	height: 10px;
	cursor: pointer;
}

.dash-intro__circles > div > i {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #CCC;
	border-radius: 50%;
	transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s, opacity 0.3s;
	opacity: 0.8;
}

.dash-intro__circles > div.active > i {
	background-color: var(--cmp-dark);
	transform: scale(1.3);
	box-shadow: 0 0 2px white;
	opacity: 1;
}

.dash-intro__page h1,
.dash-intro__page h2,
.dash-intro__page h3,
.dash-intro__page h4 {
	font-size: 140%;
	color: white;
	padding-right: 50px;
}

.dash-intro__page h4 {
	font-size: 20px;
}