
body {
    background-image: url("https://i.pinimg.com/736x/77/25/d4/7725d4fb4c6725a8fb8348647de84b1e.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0;
}

h2 {
    color: #101010;
    margin-bottom: 30px;
}

form {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
}

select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 16px;
    transition: border 0.2s;
}

select:focus {
    border-color: #495057;
    outline: none;
}

button {
    background-color: #343a40;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

button:hover {
    background-color: #495057;
    transform: scale(1.02);
}

#output {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #212529;
    text-align: center;
}

.custom-navbar {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 12px 20px;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.navbar-brand {
    font-size: 20px;
    font-weight: bold;
    color: #101010 !important;
}

.navbar-toggler {
    border: none;
}

.nav-link {
    color: #212529 !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #343a40;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 10px;
    }

    .nav-link {
        margin: 10px 0;
    }
}

.box {
            background: #ffffff;
            width: 380px;
            padding: 35px;
            border-radius: 18px;
            box-shadow: 0 10px 25px rgba(0, 100, 0, 0.15);
            text-align: center;
            transition: 0.3s ease;
        }

        .box:hover {
            transform: translateY(-5px);
    
        }

  input {
            width: 100%;
            padding: 12px;
            margin: 12px 0;
            border-radius: 10px;
            border: 1px solid #000000;
            background-color: #fefefe;
            outline: none;
            transition: 0.3s;
        }

/* Body background */
body {
  background: url("https://i.pinimg.com/736x/77/25/d4/7725d4fb4c6725a8fb8348647de84b1e.jpg") no-repeat center center/cover;
  margin: 0;
  font-family: Arial, sans-serif;
}

.custom-navbar {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 12px 20px;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.nav-link.active {
  font-weight: bold;
}

.players-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
}

.players-container h2 {
  margin-bottom: 20px;
  color: #101010;
}

.players-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 500px;
  overflow-y: auto;
}

.players-list li {
  padding: 8px 0;
  font-size: 20px;
  letter-spacing: 1px;
  border-bottom: 1px solid #e0e0e0;
}

.players-list li:last-child {
  border-bottom: none;
}
