.options-table {
    display: table;
    width: 100%;

    &-header {
        display: table-row;
        width: 100%;

        &-column {
            display: table-cell;
            color: $pw;
            font-weight: 700;
            border-top: 2px solid $gray0;
            border-bottom: 2px solid $gray0;
            margin: 2px 0;
            padding: 5px 5px;
        }
    }

    &-body {
        display: table-row-group;
        width: 100%;
    }

    &-row {
        display: table-row;
        width: 100%;
    }

    &-cell {
        display: table-cell;
        font-weight: 500;
        padding: 11px 5px;
        border-bottom: 1px solid $gray0;
        width: 330px;

        &-primary {
            color: $pw;
            font-size: 14px;
        }

        &-secondary {
            color: $gray5;

            &-is-light {
                font-style: italic;
                text-align: center;
            }
        }
    }

    &-edit-item {
        float: right;
    }
}

/* Custom positioning for the options table in the sidebar */
.ff-details-holder .options-table {
    margin-bottom: 10px;
}
