html {
	font-size: 18px;
}

@media screen and (max-width: 1000px) {
	html {
		font-size: 16px;
	}
	
}

.page-error {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 20px;
	text-align: center;
}

.page-error p {
	margin-top: 2px;
}

#helpDialog .card {
	justify-content: flex-start!important;
}


.daterangepicker {

	background: var(--bg)!important;

	.drp-buttons {
		background: var(--bg)!important;
	}

	.calendar-table {
		background: var(--bg)!important;
		border-color: var(--bg)!important;
	}

	.table-condensed {
		background: var(--bg)!important;
	}

	thead th {
		border-radius: 0!important;
	}

	tr {
		background: var(--bg)!important;
	}

	td:not(.active):not(.in-range) {
		background: var(--bg)!important;
	}

	td.in-range:not(.active) {
		background: var(--accent-dark)!important;
	}
}

.todo-tag {
	border-radius: 50px;
	padding: 4px 10px;
	border: none;
	display: inline-block;
	color: white;
	margin: 0;
	line-height: 1em;
	white-space: nowrap;

	.delete {
		background: transparent;
		border: none;
		color: var(--text);
		cursor: pointer;
		margin: 0;
		padding: 0;
		color: white;
		opacity: 0.7;
		margin-left: 8px;
	}
}

.todo-tag.inverted {
	text-decoration: line-through;
	text-decoration-thickness: 3px;
	font-style: italic;
}

.todo-tag.disabled {
	background: #444!important;
}

.todo-tag.add {
	background: var(--accent-bg);
    color: black;
	padding: 4px 7px;
}


.tags-grid {
	display: flex;
	gap: 3px;
	flex-wrap: wrap;
}