table.mc-table h1 {
    font-family: monospace;
    color: #00ff00;
    text-shadow: 2px 2px #000;
}

table.mc-table {
    margin: auto;
    border-collapse: collapse;
    width: 100%;
    background: rgba(30, 30, 30, 0.9);
    border: 3px solid #555;
    box-shadow: 0 0 20px #000;
    text-align: center;
}

table.mc-table th, .mc-table td {
    border: 1px solid #444;
    padding: 12px;
    font-size: 16px;
}

table.mc-table th {
    background: #222;
    color: #00ff00;
    text-transform: uppercase;
}

table.mc-table .online {
    color: #00ff00;
    font-weight: bold;
}

table.mc-table .offline {
    color: #ff0000;
    font-weight: bold;
}

table.mc-table button {
    background: #2c2c2c;
    color: #00ff00;
    font-family: monospace;
    font-size: 18px;
    padding: 12px 24px;
    border: 2px solid #00ff00;
    border-radius: 4px; /* tu peux mettre 0 pour carré pixel */
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 10px #000;
    transition: all 0.2s ease-in-out;
}

table.mc-table button:hover {
    background: #00ff00;
    color: #111;
    box-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00 inset;
    transform: scale(1.05);
}