/* Night mode styles */
body {
    background-color: #121212;
    color: #e0e0e0;
}

.container {
    background-color: #1e1e1e;
}

h1, h2, h3 {
    color: #ffffff;
}

.player {
    background-color: #2c2c2c;
    border-color: #444444;
}

input[type="text"],
input[type="number"] {
    background-color: #333333;
    color: #ffffff;
    border-color: #555555;
}

input[type="text"]:focus,
input[type="number"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
}

button:hover {
    background-color: #0056b3;
}

#addPlayer {
    background-color: #28a745;
}

#addPlayer:hover {
    background-color: #218838;
}

#removePlayer {
    background-color: #dc3545;
}

#removePlayer:hover {
    background-color: #c82333;
}

#results {
    background-color: #2c2c2c;
    border: 1px solid #444444;
}

.error {
    color: #ff6b6b;
}

.hidden {
    display: none;
}
