.custom-tabs {
	border-color: #78291c;
	border-width: 2.5px;
}

/* Tab Background and Text Color */
.custom-tabs .nav-link {
	background-color: white; /* Tab background */
	color: #0c2753; /* Text color */
}
/* Disabled tab */
.custom-tabs .nav-link.disabled {
	color: #999999 !important; /* Light gray or any color you prefer */
	cursor: not-allowed;
	opacity: 0.6; /* Optional for visual cue */
}

/* Active Tab Style */
.custom-tabs .nav-link.active {
	background-color: #0c2753; /* Active tab background */
	color: white; /* Active tab text */
	border-bottom-color: #78291c;
}