.text-logo {
    font-family: "Cherry Bomb One", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 22px;
}

.container {
  padding-top: 59px;
}

.btn-round {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-button {
  font-size: 24px;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #343a40;
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1030; /* Zodat het boven andere elementen blijft */
}

#navbar-top-right {
  margin-bottom: 8px;
  margin-right: 2px;
}

.nav-bottom-item {
  transition: transform 0.3s ease, color 0.3s ease;
}
.nav-bottom-item.active {
  transform: scale(1.1); /* Vergroot het item */
  color: #007bff; /* Blauw kleuren */
}
.nav-item:hover {
  cursor: pointer;
}

.reward-status {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

/* Confetti */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  opacity: 0;
  animation: confettiAnimation 3s ease-in-out infinite;
}

@keyframes confettiAnimation {
  0% {
      opacity: 0;
      transform: translate(0, 0) rotate(0deg);
  }
  10% {
      opacity: 1;
  }
  50% {
      transform: translate(calc(-50px + 100px * random(-1, 1)), calc(-100px + 200px * random(-1, 1))) rotate(180deg);
  }
  100% {
      opacity: 0;
      transform: translate(calc(-100px + 200px * random(-1, 1)), calc(200px + 100px)) rotate(360deg);
  }
}
/* End Confetti */

.profile-container {
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ddd;
  background-image: url('https://via.placeholder.com/100'); /* Placeholder for profile picture */
  background-size: cover;
  background-position: center;
  margin: 0 auto 20px auto;
}

.btn-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-container {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 1050; /* Zorg dat het boven andere content verschijnt */
}

/* Play button of Wordgame */
.glow-button {
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8), 0 0 30px rgba(0, 123, 255, 0.6);
  transform: scale(1.1);
}

/* Credits */
.credits h5 {
  padding-top: 20px;
}

.credits ul {
  padding-left: 2px;
}

.credits li {
  list-style-type: none;
  font-size: 0.9rem;
}

/* Scroll games */
.scroll-container {
  white-space: nowrap; /* Prevent wrapping */
  overflow-x: auto;   /* Horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile */
}
.scroll-item {
  display: inline-block; /* Align items horizontally */
  width: 150px; /* Adjust card width */
  margin-right: 10px; /* Spacing between cards */
  text-align: center; /* Center align text and icon */
  cursor: pointer; /* Indicate button functionality */
}
.scroll-item:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  transition: transform 0.2s;
}
.scroll-item .fa-icon {
  font-size: 3rem; /* Large icon size */
  color: #007bff; /* Bootstrap primary color */
}