.crud {
    margin-top: 14px;
}

.crud__grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 14px;
    align-items: start;
}

.card {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    padding: 14px;
}

.card__head {
    margin-bottom: 8px;
}

.crud__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 6px;
}

.link {
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}

.link:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .22);
}

.link-inline {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
}

.btn--sm {
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 800;
}

.pager {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pager__info {
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
}

.pager__nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* checkbox */
.field--checkbox {
    margin-top: 2px;
}

.check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
}

/* ações da tabela (padrão) */
.table__actions--stack {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* screen lock (substitui inline blur/opacity) */
.is-locked {
    filter: blur(2px);
    opacity: .25;
    pointer-events: none;
    user-select: none;
}

.table th:last-child,
.table td:last-child {
    width: 210px;
}

@media (max-width: 900px) {
    .crud__grid {
        grid-template-columns: 1fr;
    }
}