body {
    background: #181a1b;
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    color: #f6c177;
    text-align: center;
    margin-top: 30px;
}

table {
    border-collapse: collapse;
    width: 90%;
    margin: 30px auto;
    background: #23272b;
    box-shadow: 0 2px 24px 0 #0007;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    border: 1px solid #343a40;
    padding: 10px 14px;
    text-align: left;
}

th {
    background: #1f2327;
    color: #f6c177;
    font-weight: bold;
    font-size: 1.1em;
}

td a {
    color: #9ecbff;
    text-decoration: none;
    transition: color 0.2s;
}

td a:hover {
    color: #f6c177;
}

button {
    background: #2d3136;
    color: #f6c177;
    border: 1px solid #343a40;
    border-radius: 4px;
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

button:hover {
    background: #f6c177;
    color: #23272b;
}

form {
    display: inline;
}