.inline-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}
.inline-form select {
    min-width: 220px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #091522;
    color: white;
    padding: 10px 12px;
}
.member-table {
    margin-top: 18px;
}
.member-table .thead,
.member-table .trow {
    grid-template-columns: 1fr 1.5fr 120px 80px;
}
.member-table form {
    margin: 0;
}
.link-danger {
    border: 0;
    background: transparent;
    color: #ff8ca9;
    cursor: pointer;
}
.audit-table .thead,
.audit-table .trow {
    grid-template-columns: 150px 110px 1fr 1fr 80px;
}
.password-form {
    max-width: 560px;
    display: grid;
    gap: 14px;
}
.password-form label {
    display: grid;
    gap: 7px;
    color: #a9b8c9;
    font-size: 11px;
}
.password-form input,
.inline-form input,
.reset-form input {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #091522;
    color: white;
    padding: 10px 12px;
}
.admin-section {
    margin-top: 18px;
}
.admin-section .thead,
.admin-section .trow {
    grid-template-columns: 1fr 1.5fr 100px 1.4fr;
}
.reset-form {
    display: flex;
    gap: 7px;
}
.reset-form input {
    min-width: 0;
    width: 100%;
}
@media (max-width: 760px) {
    .inline-form {
        align-items: stretch;
        flex-direction: column;
    }
    .inline-form select {
        min-width: 0;
    }
    .member-table .thead,
    .member-table .trow {
        grid-template-columns: 1fr 1fr 70px;
    }
    .member-table .thead > *:nth-child(2),
    .member-table .trow > *:nth-child(2) {
        display: none;
    }
    .audit-table .thead,
    .audit-table .trow {
        grid-template-columns: 110px 80px 1fr;
    }
    .audit-table .thead > *:nth-child(4),
    .audit-table .trow > *:nth-child(4),
    .audit-table .thead > *:nth-child(5),
    .audit-table .trow > *:nth-child(5) {
        display: none;
    }
    .admin-section .thead,
    .admin-section .trow {
        grid-template-columns: 1fr 1fr 90px;
    }
    .admin-section .thead > *:nth-child(2),
    .admin-section .trow > *:nth-child(2) {
        display: none;
    }
}
