.notFound {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.blacklisted {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.viewButton {
  background: radial-gradient(circle, #46aaff, #0b78ff) !important;
  border: 2px solid black;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}
.viewButton:hover {
  background: radial-gradient(circle, #0b78ff, #46aaff) !important;
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

.playerInfoContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.playerInfoAvatar {
  margin-right: 50px;
}

.playerInfoAvatar img {
  width: 300px;
  border-radius: 5%;
  object-fit: cover;
  border: 2px solid black;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.avatarContainer {
  position: relative;
  width: 300px; /* Match the size of the images */
  height: 300px; /* Match the size of the images */
}

.backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Place it behind the avatar */
}

.avatarImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2; /* Place it above the background */
}

.playerInfoHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0;
}

.steamAvatarContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.steamAvatarContainer img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid black;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.lastNameContainer h1 {
  font-weight: bold;
  text-decoration: underline;
  margin: 0;
}

.playerDetails {
  margin-top: 10px;
  margin-bottom: 10px;
}

.selectorDiv {
  padding: 10px;
  border: 1px solid black;
  border-radius: 5px;
  background: radial-gradient(circle, #fff346, #ffc40b) !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.mss-selector {
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.backgroundSelector {
  margin-right: 2px;
}

.factionSelector {
  margin-right: 2px;
}

.camoSelector {
  margin-right: 2px;
}

@media (max-width: 768px) {
  .playerInfoContainer {
    flex-direction: column;
    padding: 10px;
  }

  .playerInfoAvatar {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .playerInfoAvatar img {
    width: 200px;
  }

  .playerInfoHeader {
    flex-direction: column;
    align-items: center;
  }

  .avatarContainer {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .avatarContainer img {
    width: 80px;
    height: 80px;
  }

  .lastNameContainer h1 {
    font-size: 1.5rem;
  }

  .playerDetails {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .playerInfoAvatar img {
    width: 150px;
  }

  .avatarContainer img {
    width: 60px;
    height: 60px;
  }

  .lastNameContainer h1 {
    font-size: 1.2rem;
  }
}
