/* Style the tabs */
.nav-tabs .nav-link {
  color: var(--dark-purple);
  font-family: "sofia-pro", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
  border: 1px solid #5A1D63;
  background-color: #fff;
  border-radius: 18px 18px 0 0;
  padding: 20px 50px;
  color: #5A1D63;
  transition: all 0.3s ease;
}

.nav-tabs{
	padding-left: 110px;
	border-bottom: 0;
}

/* Hover effect */
.nav-tabs .nav-link:hover {
  background-color: #5A1D6330;
  color: #5A1D63;
}

/* Active tab */
.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #5A1D63;
}

.nav-tabs > li{
  margin-bottom: -1px;
}

/* Optional: Remove bottom border from tab content to align with active tab */
.tab-content {
  border: 1px solid #5A1D63;
  border-radius: 18px;
  padding: 50px 110px;
  min-height: 200px;
}

.modal-header{
  border-bottom: 0!important;
}