/* Style the tables of wiki content */
.SingleWiki table {
    display: block;

    border-collapse: separate;
    border-spacing: 0px 7px;

    width: 100%;

    margin-top: 17px;
    margin-bottom: 27px;

    overflow-x: auto;
}

    .SingleWiki table > thead,
    .SingleWiki table > tbody {
        min-width: 700px;
    }

        .SingleWiki table tr {
            background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-line-box-700x150-v1.svg' ), rgb(60, 64, 68);
            background-size: contain;
            background-position: center right;
            background-repeat: no-repeat;
            border-radius: 3px;

            width: 100%;

            transition: 0.4s;
        }

            .SingleWiki table > tbody > tr:hover {
                transition: 0.2s;
                background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-line-box-700x150-v1.svg' ), rgb(64, 68, 72);
                background-size: contain;
                background-position: center right;
                background-repeat: no-repeat;
            }

            .SingleWiki table th,
            .SingleWiki table td {
                min-width: 170px;

                padding: 17px;

                line-height: 1.4;
                text-align: left;
                vertical-align: middle;
            }

            .SingleWiki table th {
                background: rgb(247, 197, 47);

                color: rgb(60, 64, 68);
                font-weight: 800;
            }

                .SingleWiki table th:first-child,
                .SingleWiki table td:first-child {
                    border-top-left-radius: 3px;
                    border-bottom-left-radius: 3px;
                }

                .SingleWiki table th:last-child,
                .SingleWiki table td:last-child {
                    border-top-right-radius: 3px;
                    border-bottom-right-radius: 3px;
                }
