/* ----------------------------------------- */
/* for to-do list formatting, scrolling etc. */
/* ----------------------------------------- */

#todo-list {
	height: 300px;
	overflow-y: scroll;
}

#todo-items {
	list-style-type: none;
	padding: 0;
}

/* ----------------------------------------- */
/* for headers, from bootstrap 5.3.1 example */
/* ----------------------------------------- */

.form-control-dark {
	border-color: var(--bs-gray);
}
.form-control-dark:focus {
	border-color: #fff;
	box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.text-small {
	font-size: 85%;
}

.dropdown-toggle {
	outline: 0;
}
/* for heroes, from bootstrap 5.3.1 example */
@media (min-width: 992px) {
	.rounded-lg-3 {
		border-radius: 0.3rem;
	}
}

/* ------------------------------------------ */
/* for features, from bootstrap 5.3.1 example */
/* ------------------------------------------ */

.feature-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 0.75rem;
}

.icon-link > .bi {
	margin-top: 0.125rem;
	margin-left: 0.125rem;
	fill: currentcolor;
	transition: transform 0.25s ease-in-out;
}
.icon-link:hover > .bi {
	transform: translate(0.25rem);
}

.icon-square {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
}

.text-shadow-1 {
	text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
}
.text-shadow-2 {
	text-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}
.text-shadow-3 {
	text-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}

.card-cover {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.feature-icon-small {
	width: 3rem;
	height: 3rem;
}
/* --------------------------------------------- */
/* for starter-template, bootstrap 5.3.1 example */
/* --------------------------------------------- */

.icon-list li::before {
	/* regular filled right arrow icon for a list */
	display: block;
	flex-shrink: 0;
	width: 1.5em;
	height: 1.9em;
	margin-right: 0.5rem;
	content: "";
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E")
		no-repeat center center / 100% auto;
}

.icon-list-dot li::before {
	/* regular dot icon for a list */
	display: block;
	flex-shrink: 0;
	width: 1.5em;
	height: 2em;
	margin-right: 0.5rem;
	content: "";
	background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z' clip-rule='evenodd'/></svg>");
}

/* --------------------------------------------- */
/* for dropdowns from dropdowns bootstrap 5.3.1  */
/* --------------------------------------------- */

.dropdown-menu {
	margin: 4rem auto;
}

.dropdown-item-danger {
	color: var(--bs-red);
}
.dropdown-item-danger:hover,
.dropdown-item-danger:focus {
	color: #fff;
	background-color: var(--bs-red);
}
.dropdown-item-danger.active {
	background-color: var(--bs-red);
}

.btn-hover-light {
	background-color: var(--bs-white);
}
.btn-hover-light:hover,
.btn-hover-light:focus {
	color: var(--bs-blue);
	background-color: var(--bs-light);
}

.cal-month,
.cal-days,
.cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	align-items: center;
}
.cal-month-name {
	grid-column-start: 2;
	grid-column-end: 7;
	text-align: center;
}
.cal-weekday,
.cal-btn {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	height: 3rem;
	padding: 0;
}
.cal-btn:not([disabled]) {
	font-weight: 500;
}
.cal-btn:hover,
.cal-btn:focus {
	background-color: rgba(0, 0, 0, 0.05);
}
.cal-btn[disabled] {
	border: 0;
	opacity: 0.5;
}

.form-control-dark {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
}

.w-220px {
	width: 220px;
}

.w-280px {
	width: 280px;
}

.w-340px {
	width: 340px;
}

.w-600px {
	width: 600px;
}

/* --------------------------------------------------------- */
/* this is the style tag included by bootstrap in every file */
/* --------------------------------------------------------- */

.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}

.b-example-divider {
	height: 3rem;
	background-color: rgba(0, 0, 0, 0.1);
	border: solid rgba(0, 0, 0, 0.15);
	border-width: 1px 0;
	box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
		inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.b-example-vr {
	flex-shrink: 0;
	width: 1.5rem;
	height: 100vh;
}

.bi {
	vertical-align: -0.125em;
	fill: currentColor;
}

.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

/* ----------------------------------------- */
/* Cosmetics 						         */
/* ----------------------------------------- */
.grey-rounded-border {
	border: 1px solid grey !important;
	border-radius: 10px !important;
	padding: 20px;
}
.middle-margin {
	margin-left: 20px;
	margin-right: 20px;
}
.filler-div-50 {
	height: 50px;
	background-color: white;
}
.filler-div-20 {
	height: 20px;
	background-color: white;
}
