/* style.css — /home/ubuntu/services/auth/static/style.css */

body {
    background: #222;
    color: #ddd;
    font-family: 'Segoe UI', Arial, sans-serif;
}

form, .container {
    background: #282828;
    border-radius: 12px;
    box-shadow: 0 2px 8px #1118;
    padding: 2em;
    margin: 2em auto;
    max-width: 400px;
}

input, button {
    margin: 0.5em 0;
    background: #333;
    color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 0.7em;
    font-size: 1em;
    width: 100%;
}

input:focus, button:focus {
    outline: none;
    border: 1px solid #444;
}

a { color: #6395c7; }

.table-dark {
    width: 90vw;
    margin: 3em auto;
    border-radius: 18px;
    background: #262626;
    box-shadow: 0 2px 12px #111a;
    padding: 2em;
    max-height: 70vh;
    overflow-y: auto;
    /* Нет max-width — только ширина через vw! */
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

th, td {
    padding: 8px 10px;
    border-bottom: 1px solid #444;
    white-space: normal;
    font-size: 1em;
    color: #E5E5E5;
}

th {
    background: #222;
    font-weight: bold;
}

tr:hover {
    background: #333;
}

tr:last-child td {
    border-bottom: none;
}
