:where([class^="ri-"])::before {
	content: "\f3c2";
}

body {
	background-color: #fcfcfc;
}

.bible-text,
.bible-text p {
	font-family: 'Merriweather', serif;
}

.bible-text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #1e293b;
}

.verse-number {
	font-size: 0.8rem;
	color: #5539CC;
	font-weight: 700;
	vertical-align: super;
	margin-right: 0.25rem;
}

.dropdown-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.dropdown-menu.open {
	max-height: 70vh;
}

.book-list {
	max-height: 60vh;
	overflow-y: auto;
}

.chapter-list {
	max-height: 60vh;
	overflow-y: auto;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #3b82f6;
	cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #3b82f6;
	cursor: pointer;
	border: none;
}

.overlay {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
}