.config {
    .highlight {
        border: 1px dotted red;
        font-weight: bold;
        font-size: 45px;
        height: 100px;
    }

    .mock-table {
        th {
            width: 240px;
        }
        td {
            vertical-align: top;
        }
    }
    .add-button {
        float: left;
        width: 100%;
        cursor: pointer;
        &:hover {
            text-decoration: underline;
        }
    }
    .sub-remove-button, .remove-button {
        float: right;
        cursor: pointer;
        color: red;
        &:hover {
            text-decoration: underline;
        }
    }
    .move-button {
        float: right;
        cursor: move;
        margin-right: 5px;
        &:hover {
            text-decoration: underline;
        }
    }
    .link-content {
        display: flex;
        flex-direction: column;
        .input-row {
            display: grid;
        }
        .link-group {
            border: 1px solid #ccc;
            padding: 5px;
            margin: 5px 5px 10px 0;
            background-color: #eef0f2;
        }
        .group-header {
            background-color: #eef0f2;
            position: relative;
            bottom: 14px;
            padding: 5px;
        }
        label {
            font-weight: bold;
        }
        input {
            margin-bottom: 5px;
        }
        .top-border {
            border-top: 1px solid #ccc;
        }
        .sub-link-button {
            margin-top: 5px;
        }
        .sub-link-wrapper {
						background-color: #eef0f2;
				}
    }
}
