main.container {
	font-size: 1rem;
	font-family: "Roboto", sans-serif;
	padding-top: calc(var(--bs-gutter-x) * 0.5);
}
.btn-wide {
	height: 100px;
	padding: 0.5rem;
	font-size: 1rem;
	margin-bottom: calc(var(--bs-gutter-x) * 0.5);
	color: #378637;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(70, 170, 70, 0.15);
}
.btn-wide:active,
.btn-wide.active {
	color: white !important;
	background-color: #378637 !important;
}
.btn-wide.active::after {
	content: "";
	position: absolute;
	top: 38px;
	right: -20px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-left-color: #378637;
}
.btn.btn-wide:hover {
	border: none;
}
.btn-wide:not(.active):hover {
	color: #378637;
	background-color: rgba(70, 170, 70, 0.25);
}

.btn-wide .fas {
	font-size: 2.25rem;
	margin-bottom: 0.5rem;
}

#configcontent {
	height: 100%;
	overflow-y: auto;
	border-radius: var(--bs-border-radius);
	border: 1px solid rgba(70, 170, 70, 0.15);
	display: flex;
	flex-direction: column;
}
#configcontent .card-thumbnail img {
	max-height: 250px;
	object-fit: cover;
}
.library-container .btn {
	border: none !important;
}
.config-content {
	height: 100%;
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}
.form-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}
#privateLibraries,
#communityLibraries {
	display: none;
}
#savedLibraries {
	width: 100%;
	max-width: 940px;
	padding: 16px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.library-card {
	width: 220px;
	margin: 8px;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	color: #444444;
	background-color: #ffffff;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25),
		-1px -1px 4px rgba(255, 255, 255, 0.15);
	width: 100%;
	max-width: 250px;
	object-fit: contain;
	border-radius: 0.5rem;
	overflow: hidden;
	position: relative;
	transition: all 0.2s ease-in-out;
}

a.library-card:hover {
	color: #555555;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25),
		-2px -2px 8px rgba(255, 255, 255, 0.15);
	transform: translateY(-4px);
}

.library-card .library-thumb {
	height: 80px;
	width: 100%;
	padding: 10px 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f1f1f1;
}
.library-card img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}
.library-card h3 {
	color: #444444;
	font-size: 20px;
	font-weight: bold;
	margin: 8px;
}
.library-card p {
	padding: 0 8px 6px;
	margin: 0;
}
.library-card button {
	position: absolute;
	top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	background-color: rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	border: none;
	font-size: small;
	opacity: 0;
	transition: all 0.25s ease-in-out;
}
.library-card:hover button {
	opacity: 1;
}
.library-card button:hover {
	background-color: rgba(255, 255, 255, 0.85);
}
.library-card button.edit {
	right: 8px;
	color: royalblue;
}
.library-card button.delete {
	right: 42px;
	color: red;
}

@media screen and (min-width: 960px) {
	.pad-left {
		padding-left: 200px;
	}
}
@media screen and (min-width: 576px) and (max-width: 960px) {
	.container {
		max-width: 100% !important;
	}
}
.pad-right {
	width: 150px;
}
@media screen and (max-width: 1199px) {
	.pad-right {
		width: 0px;
	}
}
hr.light {
	border-color: #c1c1c1;
}
