body {
    font-family: 'Courier New', Courier, monospace; /* Monospace font for a hacker feel */
    background-color: #1e1e1e; /* Dark background for the hacker aesthetic */
    color: #c0c0c0; /* Light gray text color */
    margin: 0;
    padding: 20px;
}

h1 {
    color: #00ff00; /* Neon green for the heading */
    text-align: center;
    font-size: 2em; /* Larger font size for emphasis */
    margin-bottom: 15px;
}

label {
    font-size: 1.1em;
    margin-right: 8px;
    color: #00ff00; /* Neon green for labels */
}

input[type="text"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #333; /* Dark border for the input field */
    border-radius: 4px;
    background-color: #000; /* Black background for input */
    color: #00ff00; /* Neon green text */
    width: calc(100% - 120px);
    max-width: 280px;
    box-sizing: border-box;
    margin-right: 8px;
    transition: border-color 0.3s, background-color 0.3s; /* Smooth transitions for hover effects */
}

input[type="text"]:focus {
    border-color: #00ff00; /* Neon green border on focus */
    background-color: #1e1e1e; /* Darker background when focused */
}

button {
    padding: 10px 18px;
    font-size: 1em;
    color: #000;
    background-color: #00ff00; /* Neon green background color for button */
    border: 1px solid #00cc00; /* Slightly darker green border */
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transitions for hover effects */
}

button:hover {
    background-color: #00cc00; /* Darker green for hover effect */
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.7); /* Green glow effect on hover */
}

#player-info {
    margin-top: 20px;
    background-color: #2d2d2d; /* Dark gray background for the info section */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #333; /* Dark gray for table borders */
}

th {
    background-color: #00ff00; /* Neon green background color for table headers */
    color: #000;
}

tr:nth-child(even) {
    background-color: #1e1e1e; /* Dark background for alternating rows */
}

tr:hover {
    background-color: #0c920c8e; /* Slightly lighter gray for hover effect on table rows */
}

p {
    margin: 0;
    font-size: 1em;
}
