.toast-header {
    background-color: rgb(18, 10, 124) !important;
    color: white !important;
}

.toast {
    background-color: rgb(18, 10, 124) !important;
    opacity: 1.0;
    padding: 10px !important;
    font-size: 1.5rem;
}

.toast-header .btn-close {
    --bs-btn-close-color:  white !important;
}

/* Cookie Banner Styles */
/* Target the entire scrollbar */
#cookieBanner::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
  height: 12px; /* Height of the scrollbar (for horizontal scrollbars) */
}

/* The track (background of the scrollbar) */
#cookieBanner::-webkit-scrollbar-track {
  background: #ffffff; /* Light gray background */
  border-radius: 10px; /* Optional: Rounded corners */
}

/* The draggable scrollbar thumb */
#cookieBanner::-webkit-scrollbar-thumb {
  background: #e10000; /* Gray thumb */
  border-radius: 10px; /* Optional: Rounded corners */
}

/* Thumb hover effect */
#cookieBanner::-webkit-scrollbar-thumb:hover {
  background: #870000; /* Darker gray on hover */
}

/* The buttons (arrows on the scrollbar) */
#cookieBanner::-webkit-scrollbar-button {
  color: #000000; /* Light gray background for buttons */
}

/* Button hover effect */
#cookieBanner::-webkit-scrollbar-button:hover {
  background: #710000; /* Darker gray on hover */
}

.cookie-banner-container {
  position: fixed;
  top: 30vh;
  left: 0;
  font-family: sans-serif;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: none;
}

.cookie-banner {
  background-color: #ffffff;
  text-align: center;
  z-index: 9999;
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  max-height: 450px;
  overflow-y: scroll;
}

.cookie-banner h4 {
  margin: 0 0 0.5rem 0;
  color: white;
  background-color: #45a049;
  padding: 1rem;
}

.cookie-banner p {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  color: rgb(0, 0, 0);
  background-color: #f4f4f4;
  padding: 1rem;
  word-break: keep-all;
}

.cookie-banner button {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.3 rem;
  border-radius: 4px;
}

.cookieDeclineBtn {
  background-color: #962020 !important;
}

.cookie-banner button:hover {
  background-color: #45a049;
}

/* Main event heading/hero section */
.event-header {
  text-align: center;
  padding: 1.5rem 0;
  background: linear-gradient(to right, #000, #222);
  border-bottom: 2px solid #444;
}

.event-header h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.event-header p {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #ccc;
}

/* Fight Card Container */
.fight-card {
  margin: 2rem auto;
  max-width: 1200px;
  
  border-radius: 2px;
  padding: 2rem;
  background-color: white;
  
  z-index: 88;
  padding-top: 5rem;
}
