1.plugin-virtualgroup {
2    * {
3        box-sizing: border-box;
4    }
5
6    form fieldset {
7        width: 100%;
8        margin-top: 1em;
9        margin-bottom: 1em;
10
11        label {
12            font-weight: bold;
13        }
14    }
15
16    table {
17        width: 100%;
18
19        td.act {
20            > div {
21                display: flex;
22                gap: 0.5em;
23                justify-content: end;
24            }
25
26            svg {
27                width: 1em;
28                height: 1em;
29            }
30
31            form {
32                display: inline-block;
33                margin: 0;
34                padding: 0;
35            }
36
37            button, .button {
38                height: 1.5em;
39                padding: 0 0.5em;
40                margin: 0;
41
42                font-size: 1em;
43                text-decoration: none;
44
45                display: inline-flex;
46                align-items: center;
47                gap: 0.25em;
48
49                outline: none;
50            }
51        }
52    }
53}
54