/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.bloody-font {
  font-family: 'Jolly Lodger';
  letter-spacing: 5px;
}

.w-95 {
  width: 95% !important;
}

.race-card {
  color: inherit;
  font-family: inherit;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s;
}

.race-card:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.sponsor-card {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.language-toggle-mobile {
  background-color: transparent; 
  border: 0px;
}

.fade-in-title, .fade-in-subtitle {
  opacity: 0;
  animation: fadeIn 3.0s ease-in forwards;
}
.fade-in-title {
  animation-delay: 0.2s;
}
.fade-in-subtitle {
  animation-delay: 0.8s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Custom dark scrollbar for admin tables */
.table-responsive {
  scrollbar-color: #444 #222;
  scrollbar-width: auto;
}

/* Webkit browsers */
.table-responsive::-webkit-scrollbar {
  height: 20px;
  background: #222;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 6px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.table-responsive::-webkit-scrollbar-corner {
  background: #222;
}