.custom-button {
	background-color: #ff8000;
	border: 1px solid #ff8000;
	padding: 6px 15px;
	border-radius: 5px;
	font-size: 14px;
	transition: 0.2s ease-in-out;
	color: white;
	font-weight: bold;
}

.custom-button:hover {
	color: #ff8000;
	background-color: transparent;
}


.custom-button.dark {
	color: white; /* dark:text-white */
}

.custom-button.dark:hover {
	color: #1f2937; /* dark:hover:text-gray-900 */
}
