body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #f3f4f6;
    color: #1f2937;
}

.auth-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.card {
    width: min(980px, 95vw);
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
}

.toolbar, .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

input, button, select {
    font: inherit;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
}

button {
    cursor: pointer;
    background: #2563eb;
    color: #fff;
    border: 0;
}

button.muted {
    background: #6b7280;
}

.status {
    margin: 12px 0;
    min-height: 20px;
}

.error {
    color: #b91c1c;
}

.small {
    color: #6b7280;
    font-size: 12px;
}

.table-wrap {
    overflow-x: auto;
}

.pagination {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination button {
    padding: 6px 10px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
}

th, td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    text-align: left;
    white-space: nowrap;
}

thead {
    background: #f9fafb;
}
