.protocol {
    .discriminants {
        .table-container {
            background-color: var(--background-grey);
            border-radius: 2rem;

            table.discriminants-table {
                thead, tbody {
                    tr {
                        display: flex;
                        align-items: center;
                        width: 100%;

                        th, td {
                            padding: 0 1rem;
                            width: 10%;

                            &:first-child {
                                width: 65%;
                            }

                            &:last-child {
                                width: 5%;
                            }
                        }
                    }
                }

                thead {
                    tr th {
                        background-color: unset;
                    }
                }

                tbody {
                    tr {
                        margin: 0.5rem 0;
                    }
                }

                .btn {
                    background-color: transparent;
                    border: 0;
                    margin-bottom: 1rem;
                    padding-top: 0;
                }
            }
        }
    }
}
