body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;  
  background-image: url('fons.png');
  background-size: cover;
  
  
}

#navbar {
  background-color: #333;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo {
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
}

#navbar button, #profileBtn {
  cursor: pointer;
  background-color: transparent;
  color: white;
  border: none;
  font-size: 16px;
  margin: 0 10px;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

#navbar button:hover, #profileBtn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#profileBtn {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0; /* Set the dropdown content to appear from the right */
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
  display: block;
   /* Reset the right property for the dropdown */
  left: 100; /* Set the dropdown content to appear from the left */
}


#centerContent {
  text-align: center;
  margin-top: 50px;
}

#gamePinInput {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

#userID {
  font-weight: bold;
  color: #333;
}

#signInBtn, #registerBtn {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

#signInBtn:hover, #registerBtn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Style for the admin button */
#adminBtn {
  margin: 0 auto; /* Centers the button horizontally */
}

#adminBtn a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #555;
  transition: background-color 0.3s ease;
}

/* Hover effect for the admin button */
#adminBtn a:hover {
  background-color: #777;
}
