/* Shared list/table UI polish - applies across all list pages using
   the .dataTablesCard / .action-buttons conventions */

.action-buttons {
    gap: 8px;
}

.action-buttons .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform .15s ease, box-shadow .15s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .35);
}

.action-buttons .btn svg {
    width: 18px;
    height: 18px;
}

.action-buttons .btn i {
    font-size: 14px;
}

.dataTablesCard tbody td > img,
.dataTablesCard tbody td a > img {
    border-radius: 8px;
    object-fit: cover;
}
