body {
    font-family: Arial, sans-serif;
    background-color: #f2f6ff;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation bar */
nav {
    background-color: #1e3a8a;
    padding: 12px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Page title */
h1, h2 {
    margin-top: 30px;
    color: #1e3a8a;
}

/* Input fields */
input {
    display: block;
    margin: 12px auto;
    padding: 10px;
    width: 240px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Input focus (simple feedback) */
input:focus {
    outline: none;
    border-color: #2563eb;
}

/* Buttons */
button,
input[type="button"] {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover,
input[type="button"]:hover {
    background-color: #1d4ed8;
}

/* Output message */
/* List of Players Output Box */
#output {
    margin: 20px auto;
    padding: 15px;
    width: 300px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Each player name */
#output p {
    margin: 5px 0;
    padding: 5px;
    border-bottom: 1px solid #eee;
}


/* Footer */
footer {
    margin-top: 40px;
    padding: 15px;
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    font-size: 14px;
}

footer p {
    margin: 5px 0;
}
