.dashboard {
	height: 95vh;
	width: 95vw;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1rem;
	padding: 1rem;
}

.dash-card {
	background: #f5f5f5;
	border-radius: 8px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dash-card h2 {
	color: #333;
	border-bottom: 2px solid dodgerblue;
	padding-bottom: 0.5rem;
	margin: 0;
}

.dash-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.dash-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: dodgerblue;
}

.dash-number.connected {
	color: green;
}

.dash-number.motw {
	font-size: 1.5rem;
}

.dash-label {
	font-size: 0.85rem;
	color: #666;
	text-align: center;
}

.dash-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.dash-actions button {
	padding: 12px;
	background-color: dodgerblue;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.2s;
}

.dash-actions button:hover {
	background-color: rgb(20, 111, 202);
}

.dash-indicator {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 6px;
}

.dash-indicator.online {
	background-color: #4caf50;
	box-shadow: 0 0 6px #4caf50;
}

.dash-indicator.offline {
	background-color: #f44336;
	box-shadow: 0 0 6px #f44336;
}

.dashboard > div {
	height: auto;
	min-height: 200px;
}

.userList > div:nth-child(odd) {
	background-color: lightgray;
}

.isCurrentlyConnected {
	color: white;
	padding: 5px;
	text-transform: uppercase;
}

.isCurrentlyConnected[data-isConnected="true"] {
	background-color: green;
}

.isCurrentlyConnected[data-isConnected="false"] {
	background-color: red;
}

.userPopup {
	display: flex;
	height: 1000px;
}

.userPopup > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hidden {
	display: none !important;
}
