.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.04) !important;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.card-img-top {
border-top-left-radius: 0;
border-top-right-radius: 0;
}

.topics {
  cursor: pointer;
}

.topics:hover, .favorites:hover {
  background-color: #0a58ca;
  color: white;
}

.groups:hover {
  background-color: #0a58ca;
}

.collapsible-content-scroll {
  max-height: 600px;
  overflow-y: auto;
}
.collapsible-content-scroll::-webkit-scrollbar{
	display: none;
}

.favorite-star-added {
  fill: red;
}

.card-footer{
  background-color:white;
  border-top: none;
  border: #0a58ca;
}

.nav-link:hover{
  background: none;
}
.nav-link:focus {
	border: none;
	outline: none;
}

.custom-list{
	display: flex;
	border-bottom: 1px solid #dee2e6;
	overflow-x: auto;
	gap: 1.5rem;
	width: 100%;
}

.custom-list::-webkit-scrollbar{
	display: none;
}

@media (max-width: 768px) {
	.card:hover {
		transform: none !important;
	}
}