/* Color utilities */

.bg-blue {
	background-color: rgb(58, 98, 244);
}

.bg-black {
	background-color: black;
}

.bg-white {
	background-color: white;
}

.text-white {
	color: white;
}

.text-black {
	color: black;
}

/* Text utilities */

.text-decoration-none {
	text-decoration: none;
}

.text-center {
	text-align: center;
}

.bold {
	font-weight: 600;
}

/* Border utilities */

.border-bottom {
	border-bottom: 1px solid rgb(153, 153, 153);
}

/* Spacing utilities */

.p-1 {
	padding: 0.5rem;
}

.mt-1 {
	margin-top: 0.5rem;
}

.ml-1 {
	margin-left: 0.5rem;
}

.mx-5px {
	margin-left: 5px;
	margin-right: 5px;
}

/* Image utilities */
.img-contain {
	object-fit: contain;
	max-width: 100%;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.w-fit-content {
	min-width: fit-content;
}

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

