body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
}

header {
  background-color: hsl(0, 0%, 39%);
  padding: 10px;
}

.container {
  max-width: 800px;
  margin: 35px auto 0;
  padding: 20px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #eeeeee;
  z-index: 1000;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.navbar-logo img {
  width: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-title {
  color: #727272;
  font-weight: bold;
  margin-left: 10px;
  text-decoration: none;
}

.navbar-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.navbar-buttons a {
  color: #535353;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  margin-right: 10px;
}

.navbar-buttons a:hover {
  text-decoration: none !important;
  background-color: #cfcfcf;
}

.player-card {
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  background-color: #eeeeee;
  box-shadow: 0 0 10px rgba(170, 170, 170, 0.5);
}

.details {
  margin-left: 15px;
}

.details h2 {
  margin: 0;
  color: #4e4e4e;
  cursor: pointer;
}

.details span {
  color: #727272;
}

.player-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.modal-content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #dbdbdb;
  min-width: 260px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #333333;
  z-index: 1001;
}

.modal-content h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.modal-content img {
  max-width: 80px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.modal-content p {
  position: flex;
  margin-bottom: -20px;
}